Files
UnrealEngine/Engine/Source/Runtime/Solaris/uLangJSON/uLangJSON.Build.cs
2025-05-18 13:04:45 +08:00

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;
}
}