You've already forked UnrealEngineUWP
mirror of
https://github.com/izzy2lost/UnrealEngineUWP.git
synced 2026-03-26 18:15:20 -07:00
This represents UE4/Main @17911760, Release-5.0 @17915875 and Dev-PerfTest @17914035 [CL 17918595 by aurel cordonnier in ue5-release-engine-test branch]
49 lines
928 B
C#
49 lines
928 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",
|
|
"ToolWidgets",
|
|
}
|
|
);
|
|
|
|
if(Target.bWithLiveCoding)
|
|
{
|
|
PrivateIncludePathModuleNames.Add("LiveCoding");
|
|
}
|
|
}
|
|
}
|