Files
UnrealEngineUWP/Engine/Plugins/Runtime/StateTree/Source/StateTreeEditorModule/StateTreeEditorModule.Build.cs
yoan stamant d6b45687f8 [Backout] - CL33232683
[FYI] Yoan.StAmant
Original CL Desc
-----------------------------------------------------------------
[StateTreeDebugger] enabled debugger on all desktop platforms
#jira UE-192305
#rb mikko.mononen

[CL 33234412 by yoan stamant in ue5-main branch]
2024-04-25 12:20:47 -04:00

74 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)
{
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",
"StructUtils",
"StructUtilsEngine",
"StructUtilsEditor",
"GameplayTags",
}
);
PrivateDependencyModuleNames.AddRange(
new string[] {
"AssetDefinition",
"RenderCore",
"GraphEditor",
"KismetWidgets",
"PropertyPath",
"ToolMenus",
"ToolWidgets",
"ApplicationCore",
"DeveloperSettings",
"RewindDebuggerInterface",
"DetailCustomizations",
"AppFramework",
"KismetCompiler",
}
);
PrivateIncludePathModuleNames.AddRange(new string[] {
"MessageLog",
});
if (Target.Platform == UnrealTargetPlatform.Win64)
{
PublicDefinitions.Add("WITH_STATETREE_DEBUGGER=1");
}
else
{
PublicDefinitions.Add("WITH_STATETREE_DEBUGGER=0");
}
}
}
}