25 lines
510 B
C#
25 lines
510 B
C#
// Copyright Epic Games, Inc. All Rights Reserved.
|
|
|
|
namespace UnrealBuildTool.Rules
|
|
{
|
|
public class ToolMenus : ModuleRules
|
|
{
|
|
public ToolMenus(ReadOnlyTargetRules Target) : base(Target)
|
|
{
|
|
// Enable truncation warnings in this module
|
|
CppCompileWarningSettings.UnsafeTypeCastWarningLevel = WarningLevel.Warning;
|
|
|
|
PrivateDependencyModuleNames.AddRange(
|
|
new string[] {
|
|
"Core",
|
|
"CoreUObject",
|
|
"ApplicationCore",
|
|
"Slate",
|
|
"SlateCore",
|
|
"InputCore"
|
|
}
|
|
);
|
|
}
|
|
}
|
|
}
|