Skip to content

Commit

Permalink
[WiP] Add support for Mac Catalyst (#240)
Browse files Browse the repository at this point in the history
  • Loading branch information
kleisauke committed Oct 27, 2024
1 parent cd622f9 commit 8308801
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/NetVips/ModuleInitializer.cs
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,7 @@ internal static string RemapLibraryName(string libraryName)
// single shared library with all dependencies statically linked
// without breaking compatibility with the shared builds
// (i.e. what is usually installed via package managers).
return OperatingSystem.IsMacOS()
return OperatingSystem.IsMacOS() || OperatingSystem.IsMacCatalyst()
? "libvips.42.dylib"
: "libvips.so.42";
}
Expand Down

0 comments on commit 8308801

Please sign in to comment.