Files
joe kirchoff 9affe69d97 UnrealBuildAccelerator: Experimental for 5.4
#jira UE-197967

[CL 30002804 by joe kirchoff in ue5-main branch]
2023-11-29 18:47:11 -05:00

22 lines
459 B
C#

// Copyright Epic Games, Inc. All Rights Reserved.
using UnrealBuildTool;
[SupportedPlatforms(UnrealPlatformClass.Desktop)]
public class UbaTestApp : ModuleRules
{
public UbaTestApp(ReadOnlyTargetRules Target) : base(Target)
{
UnsafeTypeCastWarningLevel = WarningLevel.Error;
PrivateDefinitions.AddRange(new string[] {
"_CONSOLE",
});
if (Target.Platform.IsInGroup(UnrealPlatformGroup.Linux))
{
PublicSystemLibraries.Add("dl");
}
}
}