You've already forked UnrealEngineUWP
mirror of
https://github.com/izzy2lost/UnrealEngineUWP.git
synced 2026-03-26 18:15:20 -07:00
42 lines
908 B
C#
42 lines
908 B
C#
// Copyright Epic Games, Inc. All Rights Reserved.
|
|
|
|
using UnrealBuildTool;
|
|
|
|
[SupportedPlatforms(UnrealPlatformClass.Desktop)]
|
|
public class UbaCommon : ModuleRules
|
|
{
|
|
public UbaCommon(ReadOnlyTargetRules Target) : base(Target)
|
|
{
|
|
UnsafeTypeCastWarningLevel = WarningLevel.Error;
|
|
StaticAnalyzerDisabledCheckers.Clear();
|
|
|
|
PublicDependencyModuleNames.AddRange(new string[] {
|
|
"UbaCore",
|
|
});
|
|
|
|
// External modules
|
|
PrivateDependencyModuleNames.AddRange(new string[] {
|
|
"UbaMimalloc",
|
|
});
|
|
|
|
PublicDependencyModuleNames.AddRange(new string[] {
|
|
"OodleDataCompression",
|
|
});
|
|
|
|
if (Target.Platform == UnrealTargetPlatform.Win64)
|
|
{
|
|
PrivateDependencyModuleNames.AddRange(new string[] {
|
|
"Detours",
|
|
});
|
|
}
|
|
else if (Target.Platform.IsInGroup(UnrealPlatformGroup.Linux))
|
|
{
|
|
PublicSystemLibraries.Add("dl");
|
|
}
|
|
|
|
PrivateDefinitions.AddRange(new string[] {
|
|
"_CONSOLE",
|
|
});
|
|
}
|
|
}
|