Skip to content
Snippets Groups Projects
Commit ae6cfc58 authored by jcarpent's avatar jcarpent
Browse files

[CMake] Set rpath policy for APPLE

parent 748b9e42
No related branches found
No related tags found
No related merge requests found
# #
# Copyright (c) 2015 LAAS-CNRS # Copyright (c) 2015-2016 LAAS-CNRS
# #
# This file is part of eigenpy. # This file is part of eigenpy.
# eigenpy is free software: you can redistribute it and/or # eigenpy is free software: you can redistribute it and/or
...@@ -33,6 +33,15 @@ STRING(REPLACE "-pedantic" "" CMAKE_CXX_FLAGS ${CMAKE_CXX_FLAGS}) ...@@ -33,6 +33,15 @@ STRING(REPLACE "-pedantic" "" CMAKE_CXX_FLAGS ${CMAKE_CXX_FLAGS})
IF(APPLE) IF(APPLE)
SET(CMAKE_MACOSX_RPATH TRUE) SET(CMAKE_MACOSX_RPATH TRUE)
SET(CMAKE_SKIP_BUILD_RPATH FALSE)
SET(CMAKE_BUILD_WITH_INSTALL_RPATH FALSE)
SET(CMAKE_INSTALL_RPATH_USE_LINK_PATH TRUE)
#SET(CMAKE_INSTALL_RPATH "${CMAKE_INSTALL_PREFIX}/lib")
LIST(FIND CMAKE_PLATFORM_IMPLICIT_LINK_DIRECTORIES "${CMAKE_INSTALL_PREFIX}/lib" isSystemDir)
IF("${isSystemDir}" STREQUAL "-1")
SET(CMAKE_INSTALL_RPATH "${CMAKE_INSTALL_PREFIX}/lib")
ENDIF("${isSystemDir}" STREQUAL "-1")
ENDIF(APPLE) ENDIF(APPLE)
# ---------------------------------------------------- # ----------------------------------------------------
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment