You've already forked UnrealEngineUWP
mirror of
https://github.com/izzy2lost/UnrealEngineUWP.git
synced 2026-03-26 18:15:20 -07:00
37 lines
790 B
C#
37 lines
790 B
C#
// Copyright 1998-2017 Epic Games, Inc. All Rights Reserved.
|
|
|
|
using UnrealBuildTool;
|
|
|
|
public class LinuxServerTargetPlatform : ModuleRules
|
|
{
|
|
public LinuxServerTargetPlatform(TargetInfo Target)
|
|
{
|
|
BinariesSubFolder = "Linux";
|
|
|
|
PrivateDependencyModuleNames.AddRange(
|
|
new string[] {
|
|
"Core",
|
|
"TargetPlatform",
|
|
"DesktopPlatform",
|
|
"Projects"
|
|
}
|
|
);
|
|
|
|
if (UEBuildConfiguration.bCompileAgainstEngine)
|
|
{
|
|
PrivateDependencyModuleNames.AddRange(new string[] {
|
|
"Engine"
|
|
}
|
|
);
|
|
|
|
PrivateIncludePathModuleNames.Add("TextureCompressor");
|
|
}
|
|
|
|
PrivateIncludePaths.AddRange(
|
|
new string[] {
|
|
"Developer/Linux/LinuxTargetPlatform/Private"
|
|
}
|
|
);
|
|
}
|
|
}
|