You've already forked UnrealEngineUWP
mirror of
https://github.com/izzy2lost/UnrealEngineUWP.git
synced 2026-03-26 18:15:20 -07:00
#ROBOMERGE-SOURCE: CL 17157455 in //UE5/Main/... #ROBOMERGE-BOT: STARSHIP (Main -> Release-Engine-Test) (v855-17104924) [CL 17157466 by matt kuhlenschmidt in ue5-release-engine-test branch]
48 lines
909 B
C#
48 lines
909 B
C#
// Copyright Epic Games, Inc. All Rights Reserved.
|
|
|
|
using UnrealBuildTool;
|
|
using System.IO;
|
|
|
|
public class SubobjectEditor : ModuleRules
|
|
{
|
|
public SubobjectEditor(ReadOnlyTargetRules Target) : base(Target)
|
|
{
|
|
PublicIncludePaths.Add(Path.Combine(ModuleDirectory, "Public"));
|
|
PrivateIncludePaths.Add(Path.Combine(ModuleDirectory, "Private"));
|
|
|
|
PublicDependencyModuleNames.AddRange(
|
|
new string[]
|
|
{
|
|
"Core",
|
|
"CoreUObject",
|
|
"SubobjectDataInterface",
|
|
"Kismet",
|
|
}
|
|
);
|
|
|
|
PrivateDependencyModuleNames.AddRange(
|
|
new string[]
|
|
{
|
|
"BlueprintGraph",
|
|
"Engine",
|
|
"Slate",
|
|
"SlateCore",
|
|
"EditorStyle",
|
|
"UnrealEd",
|
|
"InputCore",
|
|
"KismetWidgets",
|
|
"EditorWidgets",
|
|
"GameProjectGeneration",
|
|
"EditorFramework",
|
|
"GraphEditor",
|
|
"ToolMenus",
|
|
}
|
|
);
|
|
|
|
if(Target.bWithLiveCoding)
|
|
{
|
|
PrivateIncludePathModuleNames.Add("LiveCoding");
|
|
}
|
|
}
|
|
}
|