You've already forked UnrealEngineUWP
mirror of
https://github.com/izzy2lost/UnrealEngineUWP.git
synced 2026-03-26 18:15:20 -07:00
#jira #preflight 63e6975bf8244e55a4bab8ed [CL 24173369 by patrick boutot in ue5-main branch]
44 lines
803 B
C#
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");
|
|
}
|
|
}
|