Files
UnrealEngineUWP/Engine/Source/Developer/Windows/WindowsTargetPlatform/WindowsTargetPlatform.Build.cs
marc audy 95704c464b #rb aaron.mcleran
[FYI] rob.gay aaron.mcleran maxwell.hayes phil.popp
[FYI] Ethan.Geller

#ROBOMERGE-OWNER: robert.manuszewski
#ROBOMERGE-AUTHOR: ethan.geller
#ROBOMERGE-SOURCE: CL 7095880 via CL 7106842 via CL 7106847
#ROBOMERGE-BOT: CORE (Main -> Dev-Core) (v367-6836689)

[CL 7132155 by marc audy in Dev-Core branch]
2019-06-21 03:18:41 -04:00

41 lines
808 B
C#

// Copyright 1998-2019 Epic Games, Inc. All Rights Reserved.
using UnrealBuildTool;
public class WindowsTargetPlatform : ModuleRules
{
public WindowsTargetPlatform(ReadOnlyTargetRules Target) : base(Target)
{
PrivateDependencyModuleNames.AddRange(
new string[] {
"Core",
"CoreUObject",
"TargetPlatform",
"DesktopPlatform",
"AudioPlatformConfiguration",
}
);
PrivateIncludePathModuleNames.AddRange(
new string[] {
"Settings",
}
);
PrivateIncludePaths.AddRange(
new string[] {
}
);
// compile with Engine
if (Target.bCompileAgainstEngine)
{
PrivateDependencyModuleNames.AddRange( new string[] {
"Engine", "RHI"
}
);
PrivateIncludePathModuleNames.Add("TextureCompressor");
}
}
}