We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 63dcf3c commit 7bfcc87Copy full SHA for 7bfcc87
Source/UnrealEnginePython/UnrealEnginePython.Build.cs
@@ -126,13 +126,21 @@ public UnrealEnginePython(TargetInfo Target)
126
"MovieSceneCapture",
127
"Landscape",
128
"Foliage",
129
-#if WITH_FORWARDED_MODULE_RULES_CTOR
130
- "ApplicationCore"
131
-#endif
132
// ... add private dependencies that you statically link with here ...
133
}
134
);
135
+#if WITH_FORWARDED_MODULE_RULES_CTOR
+ BuildVersion Version;
+ if (BuildVersion.TryRead(out Version))
136
+ {
137
+ if (Version.MinorVersion >= 18)
138
139
+ PrivateDependencyModuleNames.Add("ApplicationCore");
140
+ }
141
142
+#endif
143
+
144
145
DynamicallyLoadedModuleNames.AddRange(
146
new string[]
0 commit comments