You've already forked UnrealEngineUWP
mirror of
https://github.com/izzy2lost/UnrealEngineUWP.git
synced 2026-03-26 18:15:20 -07:00
#preflight 644972116b589f8b3688999f [CL 25206591 by christopher waters in ue5-main branch]
33 lines
720 B
C#
33 lines
720 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");
|
|
}
|
|
|
|
PrivateIncludePathModuleNames.Add("LinuxTargetPlatform");
|
|
}
|
|
}
|