Skip to content

Commit

Permalink
install osx plugins to @rpath, not @loader_path/../lib (#2150)
Browse files Browse the repository at this point in the history
  • Loading branch information
hobu committed Aug 27, 2018
1 parent 541d807 commit cf09fbd
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion cmake/macros.cmake
Expand Up @@ -151,7 +151,7 @@ macro(PDAL_ADD_PLUGIN _name _type _shortname)
ARCHIVE DESTINATION ${PDAL_LIB_INSTALL_DIR})
if (APPLE)
set_target_properties(${${_name}} PROPERTIES
INSTALL_NAME_DIR "@loader_path/../lib")
INSTALL_NAME_DIR "@rpath")
endif()
endmacro(PDAL_ADD_PLUGIN)

Expand Down

0 comments on commit cf09fbd

Please sign in to comment.