20 lines
361 B
C#
20 lines
361 B
C#
// Copyright Epic Games, Inc. All Rights Reserved.
|
|
|
|
using UnrealBuildTool;
|
|
|
|
public class PlainProps : ModuleRules
|
|
{
|
|
public PlainProps(ReadOnlyTargetRules Target) : base(Target)
|
|
{
|
|
bDisableStaticAnalysis = true;
|
|
|
|
CppStandard = CppStandardVersion.Cpp20;
|
|
|
|
PrivateDependencyModuleNames.AddRange(
|
|
new string[] {
|
|
"Core",
|
|
"CorePreciseFP",
|
|
});
|
|
}
|
|
}
|