We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 84cbf26 commit 68a8a85Copy full SHA for 68a8a85
build.gradle
@@ -83,8 +83,13 @@ task generateJNI(type: Exec) {
83
executable = "../generate_tiledb_jni"
84
}
85
86
+import org.apache.tools.ant.taskdefs.condition.Os
87
test {
- systemProperty "java.library.path", "$buildDir/install/lib:$buildDir/install/lib64:$buildDir/install/bin:$buildDir/tiledb_jni:$buildDir/tiledb_jni/Release"
88
+ if (Os.isFamily(Os.FAMILY_WINDOWS)) {
89
+ systemProperty "java.library.path", "$buildDir\\install\\bin;$buildDir\\tiledb_jni\\Release"
90
+ } else {
91
+ systemProperty "java.library.path", "$buildDir/install/lib:$buildDir/install/lib64:$buildDir/tiledb_jni"
92
+ }
93
testLogging {
94
showStandardStreams = true
95
0 commit comments