@@ -432,13 +432,7 @@ dependencies {
432
432
// Build section
433
433
434
434
task copyLibs(type: Copy) {
435
- def libraryPaths = System.getProperty('java.library.path').split(File.pathSeparator).toList()
436
- libraryPaths.add('/usr/local/lib')
437
- if (osdetector.os == 'windows') {
438
- libraryPaths.add("${rootDir}/$(project.prefix:c)-jni/build/Release")
439
- } else {
440
- libraryPaths.add("${rootDir}/$(project.prefix:c)-jni/build")
441
- }
435
+ def libraryPaths = []
442
436
if (project.hasProperty('buildPrefix')) {
443
437
if (osdetector.os == 'windows') {
444
438
// DLLs are installed to the bin directory by cmake
@@ -447,6 +441,18 @@ task copyLibs(type: Copy) {
447
441
libraryPaths.add("${project.buildPrefix}/lib")
448
442
}
449
443
444
+ def javaLibraryPaths = System.getProperty('java.library.path').split(File.pathSeparator).toList()
445
+ libraryPaths.addAll (javaLibraryPaths)
446
+
447
+ libraryPaths.add('/usr/local/lib')
448
+ if (osdetector.os == 'windows') {
449
+ libraryPaths.add("${rootDir}/$(project.prefix:c)-jni/build/Release")
450
+ } else {
451
+ libraryPaths.add("${rootDir}/$(project.prefix:c)-jni/build")
452
+ }
453
+
454
+ def oldStrategy = duplicatesStrategy
455
+ duplicatesStrategy = DuplicatesStrategy.WARN
450
456
libraryPaths.each { path ->
451
457
from path
452
458
include '$(project.libname)jni.so'
@@ -462,6 +468,7 @@ task copyLibs(type: Copy) {
462
468
. endfor
463
469
into 'build/natives'
464
470
}
471
+ duplicatesStrategy = oldStrategy
465
472
}
466
473
467
474
jar.baseName = "$(project.prefix:c)-jni-${osdetector.classifier}"
0 commit comments