Files
UnrealEngineUWP/Engine/Source/Programs/TestPAL/TestPAL.Build.cs
Brandon Schaefer da6e2eb1e2 Rename LinuxAArch64 to LinuxArm64
#jira UE-118127
#rb Michael.Sartain
#fyi Marc.Audy, Aurel.Cordonnier

[CL 16660821 by Brandon Schaefer in ue5-main branch]
2021-06-14 13:39:47 -04:00

42 lines
1020 B
C#

// Copyright Epic Games, Inc. All Rights Reserved.
using UnrealBuildTool;
public class TestPAL : ModuleRules
{
public TestPAL(ReadOnlyTargetRules Target) : base(Target)
{
PublicIncludePaths.Add("Runtime/Launch/Public");
PrivateIncludePaths.Add("Runtime/Launch/Private"); // For LaunchEngineLoop.cpp include
PrivateIncludePaths.Add("Programs/TestPAL/Private");
PrivateDependencyModuleNames.AddRange(
new string[] {
"Core",
"ApplicationCore",
"Projects",
}
);
if (Target.IsInPlatformGroup(UnrealPlatformGroup.Windows) || Target.Platform == UnrealTargetPlatform.Mac ||
Target.Platform == UnrealTargetPlatform.Linux || Target.Platform == UnrealTargetPlatform.LinuxArm64)
{
PrivateDependencyModuleNames.AddRange(
new string[] {
"DirectoryWatcher"
}
);
}
if (Target.Platform == UnrealTargetPlatform.Linux || Target.Platform == UnrealTargetPlatform.LinuxArm64)
{
PrivateDependencyModuleNames.AddRange(
new string[] {
"SDL2",
}
);
}
}
}