Files
UnrealEngineUWP/Engine/Plugins/Runtime/StateTree/Source/StateTreeEditorModule/StateTreeEditorModule.Build.cs
yoan stamant cd35231af9 Removed reference to private directory for StateTreeEditorModule
#jira UE-194032
#rb none
#rnx

[CL 27446766 by yoan stamant in ue5-main branch]
2023-08-29 10:34:37 -04:00

69 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)
{
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"
}
);
PrivateIncludePathModuleNames.AddRange(new string[] {
"MessageLog",
});
if (Target.Platform == UnrealTargetPlatform.Win64)
{
PublicDefinitions.Add("WITH_STATETREE_DEBUGGER=1");
}
else
{
PublicDefinitions.Add("WITH_STATETREE_DEBUGGER=0");
}
}
}
}