Files
henrik karlsson 30d841dc4c [UBA]
* Removed logging entries that was only added to make horde not timeout.. since this was implemented horde has added ping logic so this is not needed anymore
* Fixed bug in callstack logging on posix
* Changed a bunch of %hs to %s
* Added allocator debug code to try to figure out asan issues

[CL 31281623 by henrik karlsson in 5.4 branch]
2024-02-07 20:38:28 -05:00

17 lines
585 B
C#

// Copyright Epic Games, Inc. All Rights Reserved.
using UnrealBuildTool;
[SupportedPlatforms(UnrealPlatformClass.Desktop)]
public class UbaVersion : ModuleRules
{
public UbaVersion(ReadOnlyTargetRules Target) : base(Target)
{
UnsafeTypeCastWarningLevel = WarningLevel.Error;
PCHUsage = PCHUsageMode.NoPCHs;
string StringPrefix = Target.Platform.IsInGroup(UnrealPlatformGroup.Windows) ? "L" : "";
PrivateDefinitions.Add($"UBA_VERSION={StringPrefix}\"{Target.Version.MajorVersion}.{Target.Version.MinorVersion}.{Target.Version.PatchVersion}-{Target.BuildVersion}\"");
}
}