2018-12-17 06:31:16 -05:00
|
|
|
// Copyright 1998-2019 Epic Games, Inc. All Rights Reserved.
|
2014-03-14 14:13:41 -04:00
|
|
|
|
|
|
|
|
using UnrealBuildTool;
|
|
|
|
|
|
|
|
|
|
public class WindowsTargetPlatform : ModuleRules
|
|
|
|
|
{
|
2017-01-30 16:52:08 -05:00
|
|
|
public WindowsTargetPlatform(ReadOnlyTargetRules Target) : base(Target)
|
2014-03-14 14:13:41 -04:00
|
|
|
{
|
2018-02-22 11:25:06 -05:00
|
|
|
PrivateDependencyModuleNames.AddRange(
|
2014-04-23 19:17:54 -04:00
|
|
|
new string[] {
|
2014-03-14 14:13:41 -04:00
|
|
|
"Core",
|
|
|
|
|
"CoreUObject",
|
2014-06-05 12:13:44 -04:00
|
|
|
"TargetPlatform",
|
|
|
|
|
"DesktopPlatform",
|
2014-03-14 14:13:41 -04:00
|
|
|
}
|
|
|
|
|
);
|
|
|
|
|
|
2014-04-23 19:17:54 -04:00
|
|
|
PrivateIncludePathModuleNames.AddRange(
|
|
|
|
|
new string[] {
|
|
|
|
|
"Settings",
|
|
|
|
|
}
|
|
|
|
|
);
|
2014-03-14 14:13:41 -04:00
|
|
|
|
|
|
|
|
PrivateIncludePaths.AddRange(
|
2014-04-23 19:17:54 -04:00
|
|
|
new string[] {
|
2014-03-14 14:13:41 -04:00
|
|
|
}
|
|
|
|
|
);
|
2014-04-23 19:17:54 -04:00
|
|
|
|
|
|
|
|
// compile with Engine
|
2017-07-21 12:42:36 -04:00
|
|
|
if (Target.bCompileAgainstEngine)
|
2014-04-23 19:17:54 -04:00
|
|
|
{
|
2018-05-23 21:04:31 -04:00
|
|
|
PrivateDependencyModuleNames.AddRange( new string[] {
|
|
|
|
|
"Engine", "RHI"
|
|
|
|
|
}
|
|
|
|
|
);
|
|
|
|
|
PrivateIncludePathModuleNames.Add("TextureCompressor");
|
|
|
|
|
}
|
|
|
|
|
}
|
2014-03-14 14:13:41 -04:00
|
|
|
}
|