Skip to content

Commit 10c469a

Browse files
committed
remove StructUtils reference from UE 5.5
1 parent 3762a5c commit 10c469a

File tree

2 files changed

+9
-3
lines changed

2 files changed

+9
-3
lines changed

Source/Flow/Flow.Build.cs

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,9 +10,12 @@ public Flow(ReadOnlyTargetRules target) : base(target)
1010

1111
PublicDependencyModuleNames.AddRange(new[]
1212
{
13-
"LevelSequence",
14-
"StructUtils",
13+
"LevelSequence"
1514
});
15+
16+
#if UE_5_4_OR_EARLIER
17+
PublicDependencyModuleNames.AddRange("StructUtils");
18+
#endif
1619

1720
PrivateDependencyModuleNames.AddRange(new[]
1821
{

Source/FlowEditor/FlowEditor.Build.cs

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -59,9 +59,12 @@ public FlowEditor(ReadOnlyTargetRules target) : base(target)
5959
"Slate",
6060
"SlateCore",
6161
"SourceControl",
62-
"StructUtils",
6362
"ToolMenus",
6463
"UnrealEd"
6564
});
65+
66+
#if UE_5_4_OR_EARLIER
67+
PrivateDependencyModuleNames.AddRange("StructUtils");
68+
#endif
6669
}
6770
}

0 commit comments

Comments
 (0)