Skip to content

Commit

Permalink
Fix find native lib
Browse files Browse the repository at this point in the history
  • Loading branch information
Dušan Baran committed Dec 17, 2024
1 parent c69c63b commit da25ebb
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion apis/java/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -197,7 +197,7 @@ task installJNITask(type: Exec) {

// Try to find the native TileDB-VCF library.
task findNativeLib {
if (file("${pathConfig.nativeLibInstallDir}/include/tiledbvcf.h").isFile()) {
if (file("${pathConfig.nativeLibInstallDir}/include/tiledbvcf/tiledbvcf.h").isFile()) {
ext.foundNativeLib = "true"
println "Found native TileDB-VCF library: ${pathConfig.nativeLibInstallDir}"
} else {
Expand Down

0 comments on commit da25ebb

Please sign in to comment.