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

42 lines
761 B
C#

// Copyright Epic Games, Inc. All Rights Reserved.
using UnrealBuildTool;
public class StructViewer : ModuleRules
{
public StructViewer(ReadOnlyTargetRules Target) : base(Target)
{
PrivateIncludePathModuleNames.AddRange(
new string[] {
"AssetRegistry",
"EditorWidgets",
"WorkspaceMenuStructure",
}
);
PrivateDependencyModuleNames.AddRange(
new string[] {
"Core",
"CoreUObject",
"Engine",
"InputCore",
"Slate",
"SlateCore",
"EditorFramework",
"UnrealEd",
"ContentBrowserData",
"Settings",
"ApplicationCore",
}
);
DynamicallyLoadedModuleNames.AddRange(
new string[] {
"AssetRegistry",
"AssetTools",
"EditorWidgets",
}
);
}
}