You've already forked UnrealEngineUWP
mirror of
https://github.com/izzy2lost/UnrealEngineUWP.git
synced 2026-03-26 18:15:20 -07:00
#rnx #rb trivial #preflight 64402fa3211b661dc4d830dd [CL 25111944 by Joe Kirchoff in ue5-main branch]
21 lines
409 B
C#
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",
|
|
}
|
|
);
|
|
}
|
|
}
|
|
} |