You've already forked UnrealEngineUWP
mirror of
https://github.com/izzy2lost/UnrealEngineUWP.git
synced 2026-03-26 18:15:20 -07:00
#jira UE-118127 #rb Michael.Sartain #fyi Marc.Audy, Aurel.Cordonnier [CL 16660821 by Brandon Schaefer in ue5-main branch]
37 lines
797 B
C#
37 lines
797 B
C#
// Copyright Epic Games, Inc. All Rights Reserved.
|
|
|
|
using UnrealBuildTool;
|
|
|
|
public class LinuxAArch64TargetPlatform : ModuleRules
|
|
{
|
|
public LinuxAArch64TargetPlatform(ReadOnlyTargetRules Target) : base(Target)
|
|
{
|
|
BinariesSubFolder = "LinuxAArch64";
|
|
|
|
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"
|
|
}
|
|
);
|
|
}
|
|
}
|