Skip to content
Snippets Groups Projects
Commit 252a8c4f authored by Jeffrey Phillips Freeman's avatar Jeffrey Phillips Freeman :boom:
Browse files

fix(binaries): fixed an unsatisfied link error that occured on windows.

ISSUES CLOSED: #3
parent 003d1aac
No related branches found
No related tags found
No related merge requests found
......@@ -40,6 +40,8 @@ public class NativeLoader {
NativeUtils.loadLibraryFromJar("/osx/libaparapi_x86_64.dylib");
else if( isWindows() && is64Bit() )
NativeUtils.loadLibraryFromJar("/win/libaparapi_x86_64.dll");
else if( isWindows() && is32Bit() )
NativeUtils.loadLibraryFromJar("/win/libaparapi_x86.dll");
else
throw new IOException("System is not compatable with any of the known native libraries.");
}
......
File suppressed by a .gitattributes entry or the file's encoding is unsupported.
File suppressed by a .gitattributes entry or the file's encoding is unsupported.
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