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

51 lines
961 B
C#

// Copyright Epic Games, Inc. All Rights Reserved.
using System.IO;
using System.Collections.Generic;
using UnrealBuildTool;
public class ModelViewViewModelEditor : ModuleRules
{
public ModelViewViewModelEditor(ReadOnlyTargetRules Target) : base(Target)
{
PublicDependencyModuleNames.AddRange(
new string[]
{
"Engine",
"EnhancedInput",
"BlueprintGraph",
"Core",
"CoreUObject",
"EditorSubsystem",
"FieldNotification",
"KismetCompiler",
"ModelViewViewModel",
"ModelViewViewModelBlueprint",
"PropertyPath",
});
PrivateDependencyModuleNames.AddRange(
new string[]
{
"AdvancedWidgets",
"ApplicationCore",
"AssetTools",
"EditorWidgets",
"GraphEditor",
"InputCore",
"Kismet",
"MessageLog",
"Projects",
"PropertyEditor",
"StatusBar",
"SlateCore",
"Slate",
"ToolMenus",
"ToolWidgets",
"UnrealEd",
"UMG",
"UMGEditor",
});
}
}