Files
UnrealEngineUWP/Engine/Source/Developer/Linux/LinuxAArch64ServerTargetPlatform/LinuxAArch64ServerTargetPlatform.Build.cs

41 lines
917 B
C#
Raw Normal View History

// Copyright 1998-2019 Epic Games, Inc. All Rights Reserved.
using UnrealBuildTool;
public class LinuxAArch64ServerTargetPlatform : ModuleRules
{
public LinuxAArch64ServerTargetPlatform(ReadOnlyTargetRules Target) : base(Target)
{
BinariesSubFolder = "Linux";
if (Target.Platform == UnrealTargetPlatform.LinuxAArch64)
{
BinariesSubFolder += "AArch64";
}
PrivateDependencyModuleNames.AddRange(
new string[] {
"Core",
"TargetPlatform",
"DesktopPlatform",
"Projects"
}
);
if (Target.bCompileAgainstEngine)
{
PrivateDependencyModuleNames.AddRange(new string[] {
"Engine"
}
);
PrivateIncludePathModuleNames.Add("TextureCompressor");
}
PrivateIncludePaths.AddRange(
new string[] {
"Developer/Linux/LinuxTargetPlatform/Private"
}
);
}
}