2021-05-04 16:26:56 -04:00
|
|
|
// Copyright Epic Games, Inc. All Rights Reserved.
|
|
|
|
|
|
|
|
|
|
using UnrealBuildTool;
|
|
|
|
|
using System.IO;
|
|
|
|
|
|
|
|
|
|
public class SubobjectEditor : ModuleRules
|
|
|
|
|
{
|
|
|
|
|
public SubobjectEditor(ReadOnlyTargetRules Target) : base(Target)
|
|
|
|
|
{
|
|
|
|
|
PublicDependencyModuleNames.AddRange(
|
|
|
|
|
new string[]
|
|
|
|
|
{
|
|
|
|
|
"Core",
|
|
|
|
|
"CoreUObject",
|
|
|
|
|
"SubobjectDataInterface",
|
|
|
|
|
"Kismet",
|
|
|
|
|
}
|
|
|
|
|
);
|
|
|
|
|
|
|
|
|
|
PrivateDependencyModuleNames.AddRange(
|
|
|
|
|
new string[]
|
|
|
|
|
{
|
|
|
|
|
"BlueprintGraph",
|
|
|
|
|
"Engine",
|
|
|
|
|
"Slate",
|
|
|
|
|
"SlateCore",
|
|
|
|
|
"UnrealEd",
|
|
|
|
|
"InputCore",
|
|
|
|
|
"KismetWidgets",
|
2021-08-12 15:47:26 -04:00
|
|
|
"EditorWidgets",
|
2021-05-04 16:26:56 -04:00
|
|
|
"GameProjectGeneration",
|
|
|
|
|
"EditorFramework",
|
|
|
|
|
"GraphEditor",
|
|
|
|
|
"ToolMenus",
|
2021-10-27 15:14:40 -04:00
|
|
|
"ToolWidgets",
|
2021-05-04 16:26:56 -04:00
|
|
|
}
|
|
|
|
|
);
|
|
|
|
|
|
|
|
|
|
if(Target.bWithLiveCoding)
|
|
|
|
|
{
|
|
|
|
|
PrivateIncludePathModuleNames.Add("LiveCoding");
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|