Files
UnrealEngineUWP/Engine/Plugins/Runtime/ModelViewViewModel/Source/ModelViewViewModelBlueprint/ModelViewViewModelBlueprint.Build.cs
Marc Audy 402cbf60a8 Fix clang compilation
#codereview zahra.nikbakht, patrick.boutot
#rnx
#preflight

[CL 24713330 by Marc Audy in ue5-main branch]
2023-03-20 01:29:22 -04:00

38 lines
727 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",
"PropertyPath",
"SlateCore",
"Slate",
"UMG",
"UMGEditor",
"UnrealEd",
});
PublicDefinitions.Add("UE_MVVM_WITH_VIEWMODEL_EDITOR=0");
}
}