Files
UnrealEngineUWP/Engine/Plugins/Runtime/StateTree/Source/StateTreeEditorModule/StateTreeEditorModule.Build.cs
yoan stamant e6d36d7569 Remove references to deprecated plugin StructUtils (now part of CoreUObject)
#jira UE-216472
#rb devin.doucette

#changelist validated

[CL 34514179 by yoan stamant in ue5-main branch]
2024-06-19 17:04:50 -04:00

66 lines
1.3 KiB
C#

// Copyright Epic Games, Inc. All Rights Reserved.
namespace UnrealBuildTool.Rules
{
public class StateTreeEditorModule : ModuleRules
{
public StateTreeEditorModule(ReadOnlyTargetRules Target) : base(Target)
{
UnsafeTypeCastWarningLevel = WarningLevel.Warning;
PublicIncludePaths.AddRange(
new string[] {
}
);
PublicDependencyModuleNames.AddRange(
new string[] {
"Core",
"CoreUObject",
"Engine",
"InputCore",
"AssetTools",
"EditorFramework",
"UnrealEd",
"Slate",
"SlateCore",
"EditorStyle",
"PropertyEditor",
"StateTreeModule",
"SourceControl",
"Projects",
"BlueprintGraph",
"PropertyAccessEditor",
"StructUtilsEditor",
"GameplayTags",
}
);
PrivateDependencyModuleNames.AddRange(
new string[] {
"AssetDefinition",
"RenderCore",
"GraphEditor",
"KismetWidgets",
"PropertyPath",
"ToolMenus",
"ToolWidgets",
"ApplicationCore",
"DeveloperSettings",
"RewindDebuggerInterface",
"DetailCustomizations",
"AppFramework",
"KismetCompiler"
}
);
PrivateIncludePathModuleNames.AddRange(new string[] {
"MessageLog",
});
PublicDefinitions.Add("WITH_STATETREE_TRACE=1");
PublicDefinitions.Add("WITH_STATETREE_TRACE_DEBUGGER=1");
}
}
}