Files
Joe Kirchoff c4977a35c2 Suppress deterministic warnings for several plugin modules that use __DATE__ and __TIME__
#rnx
#rb trivial
#preflight 64402fa3211b661dc4d830dd

[CL 25111944 by Joe Kirchoff in ue5-main branch]
2023-04-19 14:27:17 -04:00

21 lines
409 B
C#

// Copyright Epic Games, Inc. All Rights Reserved.
using System.IO;
namespace UnrealBuildTool.Rules
{
public class CADKernel : ModuleRules
{
public CADKernel(ReadOnlyTargetRules Target)
: base(Target)
{
DeterministicWarningLevel = WarningLevel.Off; // __DATE__ in Private/CADKernel/Core/System.cpp
PublicDependencyModuleNames.AddRange(
new string[]
{
"Core",
}
);
}
}
}