Files
Brandyn / Techy fcc1b09210 init
2026-04-04 15:40:51 -05:00

24 lines
543 B
C#

// Copyright Epic Games, Inc. All Rights Reserved.
using UnrealBuildTool;
[SupportedPlatforms(UnrealPlatformClass.Desktop)]
public class UbaTest : ModuleRules
{
public UbaTest(ReadOnlyTargetRules Target) : base(Target)
{
PrivatePCHHeaderFile = "../Core/Public/UbaCorePch.h";
IWYUSupport = IWYUSupport.None;
CppCompileWarningSettings.UnsafeTypeCastWarningLevel = WarningLevel.Error;
PrivateDependencyModuleNames.AddRange(new string[] {
"UbaCommon",
});
PrivateDefinitions.AddRange(new string[] {
"_CONSOLE",
});
}
}