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

30 lines
652 B
C#

// Copyright Epic Games, Inc. All Rights Reserved.
using UnrealBuildTool;
public class ComponentVisualizers : ModuleRules
{
public ComponentVisualizers(ReadOnlyTargetRules Target) : base(Target)
{
// Enable truncation warnings in this module
CppCompileWarningSettings.UnsafeTypeCastWarningLevel = WarningLevel.Warning;
PrivateDependencyModuleNames.AddRange(
new string[] {
"Core",
"CoreUObject",
"InputCore",
"Engine",
"Slate",
"SlateCore",
"EditorFramework",
"UnrealEd",
"LevelEditor",
"PropertyEditor",
"AIModule",
"ViewportInteraction"
}
);
}
}