Files
UnrealEngine/Engine/Source/Editor/StorageServerWidgets/StorageServerWidgets.Build.cs
2025-05-18 13:04:45 +08:00

27 lines
516 B
C#

// Copyright Epic Games, Inc. All Rights Reserved.
using UnrealBuildTool;
public class StorageServerWidgets : ModuleRules
{
public StorageServerWidgets(ReadOnlyTargetRules Target)
: base(Target)
{
PrivateDependencyModuleNames.AddRange(
new string[] {
"ApplicationCore",
"Core",
"CoreUObject",
"DesktopPlatform",
"InputCore",
"Json",
"Projects",
"Slate",
"SlateCore",
"Zen"
});
CppCompileWarningSettings.UnsafeTypeCastWarningLevel = WarningLevel.Error;
}
}