You've already forked UnrealEngineUWP
mirror of
https://github.com/izzy2lost/UnrealEngineUWP.git
synced 2026-03-26 18:15:20 -07:00
[REVIEW] [at]editor-ui-systems #rb daren.cheng [FYI] editor-ui-systems #tests PIE, cooked, validation [CL 35836548 by daren cheng in ue5-main branch]
49 lines
917 B
C#
49 lines
917 B
C#
// Copyright Epic Games, Inc. All Rights Reserved.
|
|
|
|
using System.IO;
|
|
using System.Collections.Generic;
|
|
using UnrealBuildTool;
|
|
|
|
public class ModelViewViewModelEditor : ModuleRules
|
|
{
|
|
public ModelViewViewModelEditor(ReadOnlyTargetRules Target) : base(Target)
|
|
{
|
|
PublicDependencyModuleNames.AddRange(
|
|
new string[]
|
|
{
|
|
"Engine",
|
|
"BlueprintGraph",
|
|
"Core",
|
|
"CoreUObject",
|
|
"EditorSubsystem",
|
|
"FieldNotification",
|
|
"KismetCompiler",
|
|
"ModelViewViewModel",
|
|
"ModelViewViewModelBlueprint",
|
|
"PropertyPath",
|
|
});
|
|
|
|
PrivateDependencyModuleNames.AddRange(
|
|
new string[]
|
|
{
|
|
"AdvancedWidgets",
|
|
"AssetTools",
|
|
"EditorWidgets",
|
|
"GraphEditor",
|
|
"InputCore",
|
|
"Kismet",
|
|
"MessageLog",
|
|
"Projects",
|
|
"PropertyEditor",
|
|
"StatusBar",
|
|
"SlateCore",
|
|
"Slate",
|
|
"ToolMenus",
|
|
"ToolWidgets",
|
|
"UnrealEd",
|
|
"UMG",
|
|
"UMGEditor",
|
|
});
|
|
}
|
|
}
|