18 lines
382 B
C#
18 lines
382 B
C#
// Copyright Epic Games, Inc. All Rights Reserved.
|
|
|
|
using UnrealBuildTool;
|
|
|
|
public class UninstallHelper : ModuleRules
|
|
{
|
|
public UninstallHelper(ReadOnlyTargetRules Target) : base(Target)
|
|
{
|
|
PublicIncludePaths.Add("Runtime/Launch/Public");
|
|
PrivateIncludePaths.Add("Runtime/Launch/Private");
|
|
|
|
PrivateDependencyModuleNames.AddRange(new []
|
|
{
|
|
"Core", "Projects"
|
|
});
|
|
}
|
|
}
|