Files
UnrealEngineUWP/Engine/Plugins/Runtime/StateTree/Source/StateTreeEditorModule/StateTreeEditorModule.Build.cs
yoan stamant 1cd242d1dc [StateTree] debugger update
- moved debugger related files to a dedicated directory
- trace provider now allows to read all timelines associated to a given state tree asset instance
- added multiple slate widgets to manage tracks and timelines (directly inspired from RewindDebugger to make it easier to integrate the tools together eventually).
- added synchronized lists of instance names and timelines
- converted EStateTreeUpdatePhase to enum flags used to build frame details hierarchically
#preflight 645a57584c3ec54e6e65f494

[CL 25390252 by yoan stamant in ue5-main branch]
2023-05-09 12:57:56 -04:00

73 lines
1.4 KiB
C#

// Copyright Epic Games, Inc. All Rights Reserved.
namespace UnrealBuildTool.Rules
{
public class StateTreeEditorModule : ModuleRules
{
public StateTreeEditorModule(ReadOnlyTargetRules Target) : base(Target)
{
PublicIncludePaths.AddRange(
new string[] {
}
);
PublicDependencyModuleNames.AddRange(
new string[] {
"Core",
"CoreUObject",
"Engine",
"InputCore",
"AssetTools",
"EditorFramework",
"UnrealEd",
"Slate",
"SlateCore",
"EditorStyle",
"PropertyEditor",
"StateTreeModule",
"SourceControl",
"Projects",
"BlueprintGraph",
"PropertyAccessEditor",
"StructUtils",
"StructUtilsEditor",
"GameplayTags",
}
);
PrivateDependencyModuleNames.AddRange(
new string[] {
"AssetDefinition",
"RenderCore",
"GraphEditor",
"KismetWidgets",
"PropertyPath",
"PropertyEditor",
"ToolMenus",
"ToolWidgets",
"ApplicationCore",
"DeveloperSettings",
"RewindDebuggerInterface"
}
);
PrivateIncludePathModuleNames.AddRange(new string[] {
"MessageLog",
});
PrivateIncludePaths.AddRange(new string[] {
System.IO.Path.Combine(GetModuleDirectory("PropertyEditor"), "Private"),
});
if (Target.Platform == UnrealTargetPlatform.Win64)
{
PublicDefinitions.Add("WITH_STATETREE_DEBUGGER=1");
}
else
{
PublicDefinitions.Add("WITH_STATETREE_DEBUGGER=0");
}
}
}
}