Skip to content

Commit

Permalink
Move binary to top level
Browse files Browse the repository at this point in the history
  • Loading branch information
Dušan Baran committed Dec 4, 2024
1 parent 8d77697 commit dac219a
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions libtiledbvcf/src/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -265,7 +265,7 @@ endif()

install(
TARGETS tiledbvcf-bin
RUNTIME DESTINATION tiledbvcf/bin
RUNTIME DESTINATION bin
)

install(
Expand All @@ -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()


Expand Down

0 comments on commit dac219a

Please sign in to comment.