2021-09-28 13:33:17 -04:00
|
|
|
// Copyright Epic Games, Inc. All Rights Reserved.
|
|
|
|
|
|
|
|
|
|
namespace UnrealBuildTool.Rules
|
|
|
|
|
{
|
|
|
|
|
public class StateTreeEditorModule : ModuleRules
|
|
|
|
|
{
|
|
|
|
|
public StateTreeEditorModule(ReadOnlyTargetRules Target) : base(Target)
|
|
|
|
|
{
|
2024-03-21 09:44:11 -04:00
|
|
|
UnsafeTypeCastWarningLevel = WarningLevel.Warning;
|
|
|
|
|
|
2021-09-28 13:33:17 -04:00
|
|
|
PublicIncludePaths.AddRange(
|
|
|
|
|
new string[] {
|
|
|
|
|
}
|
|
|
|
|
);
|
|
|
|
|
|
|
|
|
|
PublicDependencyModuleNames.AddRange(
|
|
|
|
|
new string[] {
|
|
|
|
|
"Core",
|
|
|
|
|
"CoreUObject",
|
|
|
|
|
"Engine",
|
|
|
|
|
"InputCore",
|
|
|
|
|
"AssetTools",
|
|
|
|
|
"EditorFramework",
|
|
|
|
|
"UnrealEd",
|
|
|
|
|
"Slate",
|
|
|
|
|
"SlateCore",
|
|
|
|
|
"EditorStyle",
|
|
|
|
|
"PropertyEditor",
|
|
|
|
|
"StateTreeModule",
|
2022-05-13 06:32:28 -04:00
|
|
|
"SourceControl",
|
2021-09-28 13:33:17 -04:00
|
|
|
"Projects",
|
|
|
|
|
"BlueprintGraph",
|
|
|
|
|
"PropertyAccessEditor",
|
|
|
|
|
"StructUtilsEditor",
|
2022-09-30 11:31:57 -04:00
|
|
|
"GameplayTags",
|
2024-08-13 09:09:54 -04:00
|
|
|
"EditorSubsystem"
|
2021-09-28 13:33:17 -04:00
|
|
|
}
|
|
|
|
|
);
|
|
|
|
|
|
|
|
|
|
PrivateDependencyModuleNames.AddRange(
|
|
|
|
|
new string[] {
|
2023-02-03 20:52:46 -05:00
|
|
|
"AssetDefinition",
|
2021-09-28 13:33:17 -04:00
|
|
|
"RenderCore",
|
|
|
|
|
"GraphEditor",
|
|
|
|
|
"KismetWidgets",
|
|
|
|
|
"PropertyPath",
|
2024-08-19 15:23:03 -04:00
|
|
|
"SourceCodeAccess",
|
2021-09-28 13:33:17 -04:00
|
|
|
"ToolMenus",
|
2022-09-30 11:31:57 -04:00
|
|
|
"ToolWidgets",
|
2022-09-30 12:21:34 -04:00
|
|
|
"ApplicationCore",
|
2023-05-09 12:57:56 -04:00
|
|
|
"DeveloperSettings",
|
2023-09-26 11:50:26 -04:00
|
|
|
"RewindDebuggerInterface",
|
|
|
|
|
"DetailCustomizations",
|
2024-02-14 09:04:52 -05:00
|
|
|
"AppFramework",
|
2024-08-13 09:09:54 -04:00
|
|
|
"KismetCompiler",
|
|
|
|
|
"EditorInteractiveToolsFramework",
|
|
|
|
|
"InteractiveToolsFramework",
|
2021-09-28 13:33:17 -04:00
|
|
|
}
|
|
|
|
|
);
|
|
|
|
|
|
2022-10-19 06:39:08 -04:00
|
|
|
PrivateIncludePathModuleNames.AddRange(new string[] {
|
|
|
|
|
"MessageLog",
|
|
|
|
|
});
|
|
|
|
|
|
2024-05-02 11:47:26 -04:00
|
|
|
PublicDefinitions.Add("WITH_STATETREE_TRACE=1");
|
|
|
|
|
PublicDefinitions.Add("WITH_STATETREE_TRACE_DEBUGGER=1");
|
2022-10-19 06:39:08 -04:00
|
|
|
}
|
2021-09-28 13:33:17 -04:00
|
|
|
}
|
|
|
|
|
}
|