X-Git-Url: http://bilbo.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/blobdiff_plain/62dceedf62ca9df19fd3afee1458e21d9f211c5a..d4e94a24a03b0e727aa323d2e5a8dc4198590ea9:/tools/cmake/MakeLib.cmake diff --git a/tools/cmake/MakeLib.cmake b/tools/cmake/MakeLib.cmake index 38890f4d1c..2fddb53048 100644 --- a/tools/cmake/MakeLib.cmake +++ b/tools/cmake/MakeLib.cmake @@ -10,7 +10,7 @@ if(APPLE) # add the current location of libsimgrid-java.dynlib as a location for libsimgrid.dynlib # (useful when unpacking the native libraries from the jarfile) - set(CMAKE_INSTALL_RPATH "${CMAKE_INSTALL_PREFIX}/lib") + set(CMAKE_INSTALL_RPATH "${CMAKE_INSTALL_FULL_LIBDIR}") endif() ############################### @@ -24,11 +24,6 @@ set_target_properties(simgrid PROPERTIES VERSION ${libsimgrid_version}) set_property(TARGET simgrid APPEND PROPERTY INCLUDE_DIRECTORIES "${INTERNAL_INCLUDES}") -# Don't complain when we cast (int (*)(int,char**)) into (void(*)(int,char**)) -# This will stop when MSG goes away -set_property(SOURCE ${CMAKE_HOME_DIRECTORY}/src/msg/msg_legacy.cpp PROPERTY COMPILE_FLAGS -Wno-error=cast-function-type) -set_property(SOURCE ${CMAKE_HOME_DIRECTORY}/src/msg/msg_process.cpp PROPERTY COMPILE_FLAGS -Wno-error=cast-function-type) - add_dependencies(simgrid maintainer_files) if(enable_model-checking) @@ -39,7 +34,7 @@ if(enable_model-checking) set_property(TARGET simgrid-mc APPEND PROPERTY INCLUDE_DIRECTORIES "${INTERNAL_INCLUDES}") install(TARGETS simgrid-mc # install that binary without breaking the rpath on Mac - RUNTIME DESTINATION bin/) + RUNTIME DESTINATION ${CMAKE_INSTALL_BINDIR}/) add_dependencies(tests simgrid-mc) endif() @@ -114,7 +109,7 @@ if(enable_smpi) set_target_properties(smpimain PROPERTIES RUNTIME_OUTPUT_DIRECTORY ${CMAKE_BINARY_DIR}/lib/simgrid) install(TARGETS smpimain # install that binary without breaking the rpath on Mac - RUNTIME DESTINATION lib/simgrid) + RUNTIME DESTINATION ${CMAKE_INSTALL_LIBDIR}/simgrid) add_dependencies(tests smpimain) add_executable(smpireplaymain src/smpi/smpi_replay_main.cpp) @@ -123,7 +118,7 @@ if(enable_smpi) set_target_properties(smpireplaymain PROPERTIES RUNTIME_OUTPUT_DIRECTORY ${CMAKE_BINARY_DIR}/lib/simgrid) install(TARGETS smpireplaymain # install that binary without breaking the rpath on Mac - RUNTIME DESTINATION lib/simgrid) + RUNTIME DESTINATION ${CMAKE_INSTALL_LIBDIR}/simgrid) add_dependencies(tests smpireplaymain) if(SMPI_FORTRAN)