From dac219a6c24d98893c83d3276e3dad8b2647d1f5 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Du=C5=A1an=20Baran?= Date: Wed, 4 Dec 2024 16:30:12 +0100 Subject: [PATCH] Move binary to top level --- libtiledbvcf/src/CMakeLists.txt | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/libtiledbvcf/src/CMakeLists.txt b/libtiledbvcf/src/CMakeLists.txt index 4abc1ff90..6ccd97319 100644 --- a/libtiledbvcf/src/CMakeLists.txt +++ b/libtiledbvcf/src/CMakeLists.txt @@ -265,7 +265,7 @@ endif() install( TARGETS tiledbvcf-bin - RUNTIME DESTINATION tiledbvcf/bin + RUNTIME DESTINATION bin ) install( @@ -278,9 +278,9 @@ install( if (TILEDBVCF_SET_RPATH) if (APPLE) - set_target_properties(tiledbvcf-bin PROPERTIES INSTALL_RPATH "@loader_path/../lib") + set_target_properties(tiledbvcf-bin PROPERTIES INSTALL_RPATH "@loader_path/lib") else() - set_target_properties(tiledbvcf-bin PROPERTIES INSTALL_RPATH "\$ORIGIN/../lib") + set_target_properties(tiledbvcf-bin PROPERTIES INSTALL_RPATH "\$ORIGIN/lib") endif()