Files
UnrealEngine/Engine/Source/Developer/Linux/LinuxArm64TargetPlatform/LinuxArm64TargetPlatform.Build.cs
2025-05-18 13:04:45 +08:00

21 lines
475 B
C#

// Copyright Epic Games, Inc. All Rights Reserved.
using UnrealBuildTool;
public class LinuxArm64TargetPlatform : ModuleRules
{
public LinuxArm64TargetPlatform(ReadOnlyTargetRules Target) : base(Target)
{
BinariesSubFolder = "LinuxArm64";
SDKVersionRelevantPlatforms.Add(UnrealTargetPlatform.LinuxArm64);
PrivateDependencyModuleNames.AddRange(
new string[] {
"Core",
"DesktopPlatform",
"TargetPlatform",
}
);
}
}