You've already forked UnrealEngineUWP
mirror of
https://github.com/izzy2lost/UnrealEngineUWP.git
synced 2026-03-26 18:15:20 -07:00
34 lines
667 B
C#
34 lines
667 B
C#
// Copyright 1998-2018 Epic Games, Inc. All Rights Reserved.
|
|
|
|
using UnrealBuildTool;
|
|
|
|
public class WindowsClientTargetPlatform : ModuleRules
|
|
{
|
|
public WindowsClientTargetPlatform( ReadOnlyTargetRules Target ) : base(Target)
|
|
{
|
|
PrivateDependencyModuleNames.AddRange(
|
|
new string[] {
|
|
"Core",
|
|
"TargetPlatform",
|
|
"DesktopPlatform",
|
|
}
|
|
);
|
|
|
|
if (Target.bCompileAgainstEngine)
|
|
{
|
|
PrivateDependencyModuleNames.AddRange( new string[] {
|
|
"Engine", "RHI"
|
|
}
|
|
);
|
|
|
|
PrivateIncludePathModuleNames.Add("TextureCompressor");
|
|
}
|
|
|
|
PrivateIncludePaths.AddRange(
|
|
new string[] {
|
|
"Developer/Windows/WindowsTargetPlatform/Private"
|
|
}
|
|
);
|
|
}
|
|
}
|