2021-09-28 13:33:17 -04:00
|
|
|
// Copyright Epic Games, Inc. All Rights Reserved.
|
|
|
|
|
|
|
|
|
|
namespace UnrealBuildTool.Rules
|
|
|
|
|
{
|
|
|
|
|
public class SmartObjectsEditorModule : ModuleRules
|
|
|
|
|
{
|
|
|
|
|
public SmartObjectsEditorModule(ReadOnlyTargetRules Target) : base(Target)
|
|
|
|
|
{
|
|
|
|
|
PublicIncludePaths.AddRange(
|
|
|
|
|
new string[] {
|
|
|
|
|
}
|
|
|
|
|
);
|
|
|
|
|
|
|
|
|
|
PublicDependencyModuleNames.AddRange(
|
|
|
|
|
new string[] {
|
2022-01-24 11:36:13 -05:00
|
|
|
"AdvancedPreviewScene",
|
2021-09-28 13:33:17 -04:00
|
|
|
"Core",
|
|
|
|
|
"CoreUObject",
|
2022-01-24 11:36:13 -05:00
|
|
|
"ComponentVisualizers",
|
|
|
|
|
"EditorInteractiveToolsFramework",
|
2021-09-28 13:33:17 -04:00
|
|
|
"Engine",
|
|
|
|
|
"InputCore",
|
2022-01-24 11:36:13 -05:00
|
|
|
"InteractiveToolsFramework",
|
|
|
|
|
"PropertyEditor",
|
|
|
|
|
"SlateCore",
|
|
|
|
|
"Slate",
|
2021-09-28 13:33:17 -04:00
|
|
|
"SmartObjectsModule",
|
2022-01-24 11:36:13 -05:00
|
|
|
"SourceControl",
|
2022-11-02 11:58:24 -04:00
|
|
|
"UnrealEd",
|
|
|
|
|
"StructUtils",
|
2022-11-17 07:44:24 -05:00
|
|
|
"WorldConditions"
|
2021-09-28 13:33:17 -04:00
|
|
|
}
|
|
|
|
|
);
|
|
|
|
|
|
|
|
|
|
PrivateDependencyModuleNames.AddRange(
|
|
|
|
|
new string[] {
|
|
|
|
|
"RenderCore",
|
2022-11-01 15:11:25 -04:00
|
|
|
"ApplicationCore",
|
2023-02-03 20:52:46 -05:00
|
|
|
"AssetDefinition",
|
2022-11-17 07:44:24 -05:00
|
|
|
"StructUtilsEditor",
|
2021-09-28 13:33:17 -04:00
|
|
|
}
|
|
|
|
|
);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
}
|
|
|
|
|
}
|