Files
UnrealEngineUWP/Engine/Plugins/Runtime/StateTree/Source/StateTreeModule/StateTreeModule.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

67 lines
1.3 KiB
C#

// Copyright Epic Games, Inc. All Rights Reserved.
namespace UnrealBuildTool.Rules
{
public class StateTreeModule : ModuleRules
{
public StateTreeModule(ReadOnlyTargetRules Target) : base(Target)
{
UnsafeTypeCastWarningLevel = WarningLevel.Warning;
PublicIncludePaths.AddRange(
new string[] {
}
);
PublicDependencyModuleNames.AddRange(
new string[] {
"Core",
"CoreUObject",
"DeveloperSettings",
"Engine",
"AIModule",
"GameplayTags",
"StructUtils",
"StructUtilsEngine",
}
);
PrivateDependencyModuleNames.AddRange(
new string[] {
"PropertyPath",
}
);
UnsafeTypeCastWarningLevel = WarningLevel.Error;
if (Target.bBuildEditor)
{
PublicDependencyModuleNames.AddRange(
new string[] {
"UnrealEd",
"BlueprintGraph",
}
);
}
if (Target.Platform == UnrealTargetPlatform.Win64 &&
(Target.Configuration != UnrealTargetConfiguration.Shipping || Target.bBuildEditor))
{
PublicDefinitions.Add("WITH_STATETREE_DEBUGGER=1");
PublicDependencyModuleNames.AddRange(
new string[]
{
"TraceLog",
"TraceServices",
"TraceAnalysis"
}
);
}
else
{
PublicDefinitions.Add("WITH_STATETREE_DEBUGGER=0");
}
}
}
}