2022-04-01 14:21:11 -04:00
|
|
|
// 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",
|
2022-09-23 20:46:19 -04:00
|
|
|
"DeveloperSettings",
|
|
|
|
|
"Engine",
|
2023-04-03 22:29:35 -04:00
|
|
|
"FieldNotification",
|
2022-04-01 14:21:11 -04:00
|
|
|
"ModelViewViewModel",
|
|
|
|
|
});
|
|
|
|
|
|
|
|
|
|
PrivateDependencyModuleNames.AddRange(
|
|
|
|
|
new string[]
|
|
|
|
|
{
|
|
|
|
|
"BlueprintGraph",
|
2023-04-19 08:26:32 -04:00
|
|
|
"Kismet",
|
2022-04-01 14:21:11 -04:00
|
|
|
"KismetCompiler",
|
2023-02-13 08:39:55 -05:00
|
|
|
"PropertyEditor",
|
2023-03-20 01:29:22 -04:00
|
|
|
"PropertyPath",
|
2022-04-01 14:21:11 -04:00
|
|
|
"SlateCore",
|
|
|
|
|
"Slate",
|
|
|
|
|
"UMG",
|
|
|
|
|
"UMGEditor",
|
|
|
|
|
"UnrealEd",
|
|
|
|
|
});
|
|
|
|
|
}
|
|
|
|
|
}
|