29 lines
659 B
C#
29 lines
659 B
C#
// Copyright Epic Games, Inc. All Rights Reserved.
|
|
|
|
using UnrealBuildTool;
|
|
using System.IO;
|
|
|
|
public class uLangJSON : ModuleRules
|
|
{
|
|
public uLangJSON(ReadOnlyTargetRules Target) : base(Target)
|
|
{
|
|
IWYUSupport = IWYUSupport.None;
|
|
|
|
PCHUsage = PCHUsageMode.NoPCHs;
|
|
bRequiresImplementModule = false;
|
|
BinariesSubFolder = "NotForLicensees";
|
|
|
|
PublicDependencyModuleNames.AddRange(
|
|
new string[] {
|
|
"RapidJSON",
|
|
"uLangCore",
|
|
}
|
|
);
|
|
|
|
bDisableAutoRTFMInstrumentation = true;
|
|
|
|
CppCompileWarningSettings.SwitchUnhandledEnumeratorWarningLevel = WarningLevel.Error;
|
|
CppCompileWarningSettings.UnsafeTypeCastWarningLevel = WarningLevel.Error;
|
|
}
|
|
}
|