Files
marc audy 6381600309 Move UMG/FieldNotification files to the FieldNotification module.
#jira UE-130880
#rb yohann.dossantos
#preflight 64259ab69834526476306f92, 642aee5a6a37fb35e9ba9926

[CL 24905939 by marc audy in ue5-main branch]
2023-04-03 22:29:35 -04:00

48 lines
895 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",
"Core",
"CoreUObject",
"EditorSubsystem",
"FieldNotification",
"ModelViewViewModel",
"ModelViewViewModelBlueprint",
"PropertyPath",
});
PrivateDependencyModuleNames.AddRange(
new string[]
{
"AdvancedWidgets",
"AssetTools",
"EditorWidgets",
"BlueprintGraph",
"GraphEditor",
"InputCore",
"Kismet",
"MessageLog",
"Projects",
"PropertyEditor",
"StatusBar",
"SlateCore",
"Slate",
"ToolMenus",
"ToolWidgets",
"UnrealEd",
"UMG",
"UMGEditor",
});
}
}