We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 965bfa5 commit e3fb637Copy full SHA for e3fb637
unreal/Puerts/Source/JsEnv/JsEnv.Build.cs
@@ -572,6 +572,12 @@ void ThirdPartyNodejs(ReadOnlyTargetRules Target)
572
else if (Target.Platform == UnrealTargetPlatform.Mac)
573
{
574
string V8LibraryPath = Path.Combine(LibraryPath, "macOS");
575
+#if UE_5_2_OR_LATER
576
+ if (Target.Architecture == UnrealArch.Arm64)
577
+ {
578
+ V8LibraryPath = Path.Combine(LibraryPath, "macOS_arm64");
579
+ }
580
+#endif
581
if (Node16)
582
583
PublicAdditionalLibraries.Add(Path.Combine(V8LibraryPath, "libnode.93.dylib"));
0 commit comments