Skip to content

Commit

Permalink
Fix search paths to find arrow libraries
Browse files Browse the repository at this point in the history
  • Loading branch information
pjh40 committed Sep 16, 2024
1 parent 6863c52 commit 4f673fd
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion python/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -102,7 +102,8 @@ if(UNIX)
# loaded properly
if(APPLE)
set(CMAKE_INSTALL_NAME_DIR "@rpath")
set(CMAKE_INSTALL_RPATH "@loader_path/")
set(CMAKE_INSTALL_RPATH "@loader_path")
set(CMAKE_INSTALL_RPATH_USE_LINK_PATH TRUE)
else()
set(CMAKE_INSTALL_RPATH "\$ORIGIN")
endif()
Expand Down

0 comments on commit 4f673fd

Please sign in to comment.