From 415fff8ac07ab0240b1e321f43bc341453f01832 Mon Sep 17 00:00:00 2001
From: =?UTF-8?q?Du=C5=A1an=20Baran?= <me.dusanbaran@gmail.com>
Date: Tue, 17 Dec 2024 11:19:19 +0100
Subject: [PATCH] Fix java bindings find_library

---
 apis/java/CMakeLists.txt | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/apis/java/CMakeLists.txt b/apis/java/CMakeLists.txt
index 407205f50..ea8e923a9 100644
--- a/apis/java/CMakeLists.txt
+++ b/apis/java/CMakeLists.txt
@@ -61,12 +61,12 @@ find_package(JNI REQUIRED)
 # You can set CMAKE_PREFIX_PATH manually for a custom TileDB-VCF location.
 find_library(TILEDBVCF_LIBRARY
   NAMES
-    tiledbvcf
+    tiledbvcf libtiledbvcf
   PATH_SUFFIXES lib
 )
 find_path(TILEDBVCF_INCLUDE_DIR
   NAMES
-    tiledbvcf/tiledbvcf.h
+    tiledbvcf.h
   PATH_SUFFIXES include
 )
 include(FindPackageHandleStandardArgs)