You've already forked UnrealEngineUWP
mirror of
https://github.com/izzy2lost/UnrealEngineUWP.git
synced 2026-03-26 18:15:20 -07:00
Cherry pick 9427927 #rb Brandon.Schaefer #jira none [CL 9618959 by Michael Sartain in 4.24 branch]
41 lines
915 B
C#
41 lines
915 B
C#
// Copyright 1998-2019 Epic Games, Inc. All Rights Reserved.
|
|
|
|
using UnrealBuildTool;
|
|
|
|
public class LinuxAArch64ClientTargetPlatform : ModuleRules
|
|
{
|
|
public LinuxAArch64ClientTargetPlatform(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"
|
|
}
|
|
);
|
|
}
|
|
}
|