Files
UnrealEngineUWP/Engine/Plugins/Runtime/ModelViewViewModel/Source/ModelViewViewModelBlueprint/ModelViewViewModelBlueprint.Build.cs
bob tellez 953cc7733b [Backout] - CL25027663
[FYI] Patrick.Boutot
Original CL Desc
-----------------------------------------------------------------
MVVM: Remove the specialized viewmodel editor and use the Blueprint base editor instead.
#jira UE-182297
#preflight 64381b51df20983c41604681

[CL 25035582 by bob tellez in ue5-main branch]
2023-04-13 20:30:11 -04:00

39 lines
752 B
C#

// Copyright Epic Games, Inc. All Rights Reserved.
using System.IO;
using System.Collections.Generic;
using UnrealBuildTool;
public class ModelViewViewModelBlueprint : ModuleRules
{
public ModelViewViewModelBlueprint(ReadOnlyTargetRules Target) : base(Target)
{
PublicDependencyModuleNames.AddRange(
new string[]
{
"Core",
"CoreUObject",
"DeveloperSettings",
"Engine",
"FieldNotification",
"ModelViewViewModel",
});
PrivateDependencyModuleNames.AddRange(
new string[]
{
"BlueprintGraph",
"KismetCompiler",
"PropertyEditor",
"PropertyPath",
"SlateCore",
"Slate",
"UMG",
"UMGEditor",
"UnrealEd",
});
PublicDefinitions.Add("UE_MVVM_WITH_VIEWMODEL_EDITOR=0");
}
}