2022-04-01 14:21:11 -04:00
|
|
|
// 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",
|
|
|
|
|
"Core",
|
|
|
|
|
"CoreUObject",
|
|
|
|
|
"EditorSubsystem",
|
|
|
|
|
"ModelViewViewModel",
|
|
|
|
|
"ModelViewViewModelBlueprint",
|
|
|
|
|
"PropertyPath",
|
|
|
|
|
});
|
|
|
|
|
|
|
|
|
|
PrivateDependencyModuleNames.AddRange(
|
|
|
|
|
new string[]
|
|
|
|
|
{
|
2022-06-29 01:02:32 -04:00
|
|
|
"AdvancedWidgets",
|
2022-04-13 16:06:35 -04:00
|
|
|
"AssetTools",
|
2022-04-01 14:21:11 -04:00
|
|
|
"EditorWidgets",
|
|
|
|
|
"BlueprintGraph",
|
2022-06-27 16:24:02 -04:00
|
|
|
"GraphEditor",
|
2022-04-01 14:21:11 -04:00
|
|
|
"InputCore",
|
|
|
|
|
"Kismet",
|
2022-04-11 09:56:01 -04:00
|
|
|
"MessageLog",
|
2022-04-01 14:21:11 -04:00
|
|
|
"Projects",
|
|
|
|
|
"PropertyEditor",
|
|
|
|
|
"StatusBar",
|
|
|
|
|
"SlateCore",
|
|
|
|
|
"Slate",
|
|
|
|
|
"ToolMenus",
|
|
|
|
|
"ToolWidgets",
|
|
|
|
|
"UnrealEd",
|
|
|
|
|
"UMG",
|
|
|
|
|
"UMGEditor",
|
|
|
|
|
});
|
|
|
|
|
}
|
|
|
|
|
}
|