Skip to content
Snippets Groups Projects
Commit e75f7eb1 authored by Georg Graßnick's avatar Georg Graßnick :thinking:
Browse files

Fix OSX dynamic lib file extension

parent e29627ba
No related branches found
No related tags found
1 merge request!35Feat/libluis bin
......@@ -98,7 +98,7 @@ public final class NativeLibraryHelper {
case "linux":
return ".so";
case "osx":
return ".dynlib";
return ".dylib";
default:
throw new IllegalStateException("If this exception was thrown, something is wrong with your code");
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment