X-Git-Url: http://info.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/blobdiff_plain/823c82fe7b96c09298262a9262e518a57473fb04..1f6a008d060e1ffc86348cfa7a9750688d871314:/CMakeLists.txt diff --git a/CMakeLists.txt b/CMakeLists.txt index 31b507b82a..1d6874fc3e 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -1,8 +1,8 @@ # Build the version number set(SIMGRID_VERSION_MAJOR "3") -set(SIMGRID_VERSION_MINOR "29") -set(SIMGRID_VERSION_PATCH "1") # odd => git branch; even => stable release or released snapshot +set(SIMGRID_VERSION_MINOR "30") +set(SIMGRID_VERSION_PATCH "0") # odd => git branch; even => stable release or released snapshot if(${SIMGRID_VERSION_PATCH} EQUAL "0") set(release_version "${SIMGRID_VERSION_MAJOR}.${SIMGRID_VERSION_MINOR}") @@ -217,14 +217,10 @@ include(CheckLibraryExists) include(CheckSymbolExists) set(HAVE_GRAPHVIZ 0) -set(SIMGRID_HAVE_LUA 0) if(minimal-bindings) - message(STATUS "Don't even look for graphviz nor lua, as we build minimal binding libraries.") + message(STATUS "Don't even look for graphviz, as we build minimal binding libraries.") else() include(FindGraphviz) - if(enable_lua) - include(FindLuaSimgrid) - endif() endif() set(SIMGRID_HAVE_NS3 0) @@ -843,6 +839,16 @@ if(enable_python) add_dependencies(tests python-bindings) set_property(TARGET python-bindings APPEND PROPERTY INCLUDE_DIRECTORIES "${INTERNAL_INCLUDES}") + + if("${SIMGRID_PYTHON_LIBDIR}" STREQUAL "") # value not manually set + if("${CMAKE_INSTALL_PREFIX}" STREQUAL "/usr") + set(SIMGRID_PYTHON_LIBDIR ${Python3_SITEARCH}) + else("${CMAKE_INSTALL_PREFIX}" STREQUAL "/usr") + string(REGEX REPLACE "^/usr/" "${CMAKE_INSTALL_PREFIX}/" SIMGRID_PYTHON_LIBDIR ${Python3_SITEARCH}) + endif("${CMAKE_INSTALL_PREFIX}" STREQUAL "/usr") + endif() + install(TARGETS python-bindings + LIBRARY DESTINATION "${SIMGRID_PYTHON_LIBDIR}") else() message(FATAL_ERROR "Please install pybind11-dev to build the Python bindings (or disable that option).") endif() @@ -947,10 +953,10 @@ endif() if(pybind11_FOUND) message(" Compile Python bindings .....: ${enable_python}") message(" module ....................: ${PYTHON_MODULE_PREFIX}simgrid${PYTHON_MODULE_EXTENSION}") + message(" install path ..............: ${SIMGRID_PYTHON_LIBDIR} (force another value with -DSIMGRID_PYTHON_LIBDIR)") else() message(" Compile Python bindings .....: OFF (disabled, or pybind11 not found)") endif() -message(" Compile Lua .................: ${SIMGRID_HAVE_LUA}") message(" Compile Smpi ................: ${HAVE_SMPI}") message(" Smpi fortran ..............: ${SMPI_FORTRAN}") message(" MPICH3 testsuite ..........: ${enable_smpi_MPICH3_testsuite}")