Files
UnrealEngineUWP/Engine/Plugins/Runtime/ModelViewViewModel/Source/ModelViewViewModelBlueprint/ModelViewViewModelBlueprint.Build.cs
patrick boutot e8291c18bd MVVM: Veriry the allowed list when picking a property/function from the field selector.
#jira
#preflight 63e6975bf8244e55a4bab8ed

[CL 24173369 by patrick boutot in ue5-main branch]
2023-02-13 08:39:55 -05:00

44 lines
803 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",
"ModelViewViewModel",
});
PrivateDependencyModuleNames.AddRange(
new string[]
{
"BlueprintGraph",
"KismetCompiler",
"PropertyEditor",
"SlateCore",
"Slate",
"UMG",
"UMGEditor",
"UnrealEd",
});
PrivateIncludePaths.AddRange(
new string[]
{
"ModelViewViewModel/Private",
});
PublicDefinitions.Add("UE_MVVM_WITH_VIEWMODEL_EDITOR=0");
}
}