2014-12-07 19:09:38 -05:00
|
|
|
// Copyright 1998-2015 Epic Games, Inc. All Rights Reserved.
|
2014-04-02 18:09:23 -04:00
|
|
|
|
|
|
|
|
using UnrealBuildTool;
|
|
|
|
|
|
|
|
|
|
public class LinuxServerTargetPlatform : ModuleRules
|
|
|
|
|
{
|
|
|
|
|
public LinuxServerTargetPlatform(TargetInfo Target)
|
|
|
|
|
{
|
|
|
|
|
BinariesSubFolder = "Linux";
|
|
|
|
|
|
|
|
|
|
PrivateDependencyModuleNames.AddRange(
|
|
|
|
|
new string[] {
|
|
|
|
|
"Core",
|
2014-06-05 12:13:44 -04:00
|
|
|
"TargetPlatform",
|
|
|
|
|
"DesktopPlatform",
|
2015-05-08 14:31:12 -04:00
|
|
|
"Projects"
|
2014-04-02 18:09:23 -04:00
|
|
|
}
|
|
|
|
|
);
|
|
|
|
|
|
|
|
|
|
if (UEBuildConfiguration.bCompileAgainstEngine)
|
|
|
|
|
{
|
|
|
|
|
PrivateDependencyModuleNames.AddRange(new string[] {
|
|
|
|
|
"Engine"
|
|
|
|
|
}
|
|
|
|
|
);
|
|
|
|
|
|
|
|
|
|
PrivateIncludePathModuleNames.Add("TextureCompressor");
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
PrivateIncludePaths.AddRange(
|
|
|
|
|
new string[] {
|
|
|
|
|
"Developer/Linux/LinuxTargetPlatform/Private"
|
|
|
|
|
}
|
|
|
|
|
);
|
|
|
|
|
}
|
|
|
|
|
}
|