Skip to content

Commit

Permalink
Merge pull request #374 from wegank/cmake-absolute-fix
Browse files Browse the repository at this point in the history
CMakeLists.txt: fix absolute path
  • Loading branch information
mdadams committed Mar 11, 2024
2 parents 7359c0d + 2a122e4 commit 477f281
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -822,10 +822,10 @@ if(JAS_ENABLE_SHARED AND NOT JAS_PACKAGING)
# We only want to include directories in the installed rpath if they
# will not be considered implicitly.
list(FIND CMAKE_PLATFORM_IMPLICIT_LINK_DIRECTORIES
"${CMAKE_INSTALL_PREFIX}/${CMAKE_INSTALL_LIBDIR}" jas_is_system_dir)
"${CMAKE_INSTALL_FULL_LIBDIR}" jas_is_system_dir)
if(jas_is_system_dir EQUAL -1)
set(CMAKE_INSTALL_RPATH
"${CMAKE_INSTALL_PREFIX}/${CMAKE_INSTALL_LIBDIR}")
"${CMAKE_INSTALL_FULL_LIBDIR}")
endif()

endif()
Expand Down

0 comments on commit 477f281

Please sign in to comment.