|
| 1 | +commit 0c2527842fe4eaed8d9e5107d6a6621b3d6a716f |
| 2 | +Author: Matthias Koeppe < [email protected]> |
| 3 | +Date: Sat Nov 26 17:08:40 2022 -0800 |
| 4 | + |
| 5 | + CMakeLists.txt, src/CMakeLists.txt: Remove hardcoded RPATH settings |
| 6 | + |
| 7 | +diff --git a/CMakeLists.txt b/CMakeLists.txt |
| 8 | +index 4f8635fc..6f7a6e1b 100644 |
| 9 | +--- a/CMakeLists.txt |
| 10 | ++++ b/CMakeLists.txt |
| 11 | +@@ -64,9 +64,6 @@ if(NOT CMAKE_BUILD_TYPE) |
| 12 | + set(CMAKE_BUILD_TYPE Release) |
| 13 | + endif() |
| 14 | + |
| 15 | +-# set the correct rpath for OS X |
| 16 | +-set(CMAKE_MACOSX_RPATH ON) |
| 17 | +- |
| 18 | + # use C++14 standard |
| 19 | + set(CMAKE_CXX_STANDARD 14) |
| 20 | + |
| 21 | +diff --git a/src/CMakeLists.txt b/src/CMakeLists.txt |
| 22 | +index 27d52f14..fd3705ed 100644 |
| 23 | +--- a/src/CMakeLists.txt |
| 24 | ++++ b/src/CMakeLists.txt |
| 25 | +@@ -3,8 +3,7 @@ |
| 26 | + # |
| 27 | + function(setLibProperties targetname outputname) |
| 28 | + set_target_properties(${targetname} PROPERTIES |
| 29 | +- OUTPUT_NAME ${outputname} |
| 30 | +- MACOSX_RPATH "${CMAKE_INSTALL_PREFIX}/lib") |
| 31 | ++ OUTPUT_NAME ${outputname}) |
| 32 | + endfunction(setLibProperties) |
| 33 | + |
| 34 | + include_directories(BEFORE ${CMAKE_CURRENT_SOURCE_DIR}) |
| 35 | +@@ -200,9 +199,6 @@ endif() |
| 36 | + add_executable(example EXCLUDE_FROM_ALL example.cpp) |
| 37 | + target_link_libraries(example libsoplex) |
| 38 | + |
| 39 | +-# set the install rpath to the installed destination |
| 40 | +-set_target_properties(soplex PROPERTIES INSTALL_RPATH "${CMAKE_INSTALL_PREFIX}/lib") |
| 41 | +- |
| 42 | + # install the header files of soplex |
| 43 | + install(FILES ${headers} ${PROJECT_BINARY_DIR}/soplex/config.h DESTINATION include/soplex) |
| 44 | + install(FILES soplex.h soplex.hpp soplex_interface.h DESTINATION include) |
0 commit comments