We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 8e0eb01 commit dc32231Copy full SHA for dc32231
3 files changed
build.gradle
@@ -4,7 +4,7 @@ plugins {
4
}
5
6
group 'lemonjava'
7
-version '1.0-SNAPSHOT'
+version '2.0-SNAPSHOT'
8
9
sourceCompatibility = 1.8
10
src/main/java/org/lemonjava/Library.java
@@ -32,8 +32,8 @@ public class Library {
32
suffix = "-linux-amd64.so";
33
} else if (arch64 && osx) {
34
suffix = "-osx-amd64.dylib";
35
- } else if (windows) {
36
- throw new IllegalArgumentException("Windows not supported!");
+ } else if (arch64 && windows) {
+ suffix = "-win-amd64.dll";
37
} else {
38
throw new IllegalStateException("Couldn't find lib for lemonc");
39
src/main/resources/libs/liblemonc-win-amd64.dll
749 KB
0 commit comments