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 #ROBOMERGE-SOURCE: CL 16660864 in //UE5/Main/... #ROBOMERGE-BOT: STARSHIP (Main -> Release-Engine-Test) (v834-16658389) [CL 16660904 by brandon schaefer in ue5-release-engine-test branch]
37 lines
791 B
C#
37 lines
791 B
C#
// Copyright Epic Games, Inc. All Rights Reserved.
|
|
|
|
using UnrealBuildTool;
|
|
|
|
public class LinuxArm64TargetPlatform : ModuleRules
|
|
{
|
|
public LinuxArm64TargetPlatform(ReadOnlyTargetRules Target) : base(Target)
|
|
{
|
|
BinariesSubFolder = "LinuxArm64";
|
|
|
|
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"
|
|
}
|
|
);
|
|
}
|
|
}
|