Skip to content

Commit 3815c69

Browse files
committed
remove StructUtils reference from UE 5.5
1 parent 464d239 commit 3815c69

File tree

2 files changed

+9
-7
lines changed

2 files changed

+9
-7
lines changed

Source/Flow/Flow.Build.cs

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

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

1920
PrivateDependencyModuleNames.AddRange(new[]
2021
{

Source/FlowEditor/FlowEditor.Build.cs

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -59,11 +59,12 @@ public FlowEditor(ReadOnlyTargetRules target) : base(target)
5959
"Slate",
6060
"SlateCore",
6161
"SourceControl",
62-
#if UE_5_4_OR_EARLIER
63-
"StructUtils",
64-
#endif
6562
"ToolMenus",
6663
"UnrealEd"
6764
});
65+
66+
#if UE_5_4_OR_EARLIER
67+
PrivateDependencyModuleNames.AddRange("StructUtils");
68+
#endif
6869
}
6970
}

0 commit comments

Comments
 (0)