2020-08-11 01:36:57 -04:00
|
|
|
// Copyright Epic Games, Inc. All Rights Reserved.
|
|
|
|
|
|
|
|
|
|
using UnrealBuildTool;
|
|
|
|
|
|
2020-08-25 06:31:46 -04:00
|
|
|
public class LevelInstanceEditor : ModuleRules
|
2020-08-11 01:36:57 -04:00
|
|
|
{
|
2020-08-25 06:31:46 -04:00
|
|
|
public LevelInstanceEditor(ReadOnlyTargetRules Target) : base(Target)
|
2020-08-11 01:36:57 -04:00
|
|
|
{
|
2020-08-25 06:31:46 -04:00
|
|
|
PrivateIncludePaths.Add("Editor/LevelInstanceEditor/Private"); // For PCH includes (because they don't work with relative paths, yet)
|
2020-08-11 01:36:57 -04:00
|
|
|
|
|
|
|
|
PrivateIncludePathModuleNames.AddRange(
|
|
|
|
|
new string[] {
|
|
|
|
|
}
|
|
|
|
|
);
|
|
|
|
|
|
|
|
|
|
PrivateDependencyModuleNames.AddRange(
|
|
|
|
|
new string[] {
|
|
|
|
|
"Core",
|
|
|
|
|
"CoreUObject",
|
|
|
|
|
"Engine",
|
|
|
|
|
"InputCore",
|
|
|
|
|
"Slate",
|
|
|
|
|
"SlateCore",
|
2020-08-14 13:24:16 -04:00
|
|
|
"EditorFramework",
|
2020-08-11 01:36:57 -04:00
|
|
|
"UnrealEd",
|
|
|
|
|
"LevelEditor",
|
|
|
|
|
"ToolMenus",
|
|
|
|
|
"PropertyEditor",
|
|
|
|
|
"NewLevelDialog",
|
|
|
|
|
"MainFrame",
|
|
|
|
|
"ContentBrowser",
|
|
|
|
|
"AssetTools",
|
2020-11-16 08:50:22 -04:00
|
|
|
"ClassViewer",
|
2021-01-18 12:50:54 -04:00
|
|
|
"MessageLog",
|
2022-06-13 18:38:57 -04:00
|
|
|
"EditorWidgets",
|
|
|
|
|
"DeveloperSettings"
|
2020-08-11 01:36:57 -04:00
|
|
|
}
|
|
|
|
|
);
|
|
|
|
|
|
|
|
|
|
DynamicallyLoadedModuleNames.AddRange(
|
|
|
|
|
new string[] {
|
|
|
|
|
}
|
|
|
|
|
);
|
|
|
|
|
}
|
|
|
|
|
}
|