X-Git-Url: http://info.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/blobdiff_plain/f963a5f841d6f5c409d4d8f7570d641619b52ebf..3554e5655733577059c0c636e5010961d703d3f9:/CMakeLists.txt diff --git a/CMakeLists.txt b/CMakeLists.txt index 4e05c8d5a9..d1dc8d679a 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -1,7 +1,7 @@ # Build the version number set(SIMGRID_VERSION_MAJOR "3") -set(SIMGRID_VERSION_MINOR "25") +set(SIMGRID_VERSION_MINOR "26") set(SIMGRID_VERSION_PATCH "1") # odd => git branch; even => stable release or released snapshot if(${SIMGRID_VERSION_PATCH} EQUAL "0") @@ -146,8 +146,8 @@ if(CMAKE_VERSION VERSION_LESS "3.12") message(FATAL_ERROR "Please install Python (version 3 or higher) to compile SimGrid.") endif() else() - find_package(Python3) - if(NOT Python3_FOUND) + find_package(Python3 COMPONENTS Interpreter Development) + if(NOT Python3_Interpreter_FOUND) message(FATAL_ERROR "Please install Python (version 3 or higher) to compile SimGrid.") endif() set(PYTHON_EXECUTABLE ${Python3_EXECUTABLE}) @@ -237,6 +237,9 @@ set(SIMGRID_HAVE_NS3 0) if(enable_ns3) include(FindNS3) if (SIMGRID_HAVE_NS3) + if (NS3_VERSION VERSION_LESS "3.28") + message(FATAL_ERROR "SimGrid needs at least ns-3.28. Please upgrade or disable that cmake option.") + endif() set(SIMGRID_HAVE_NS3 1) foreach(lib core csma point-to-point internet network applications wifi) set(SIMGRID_DEP "${SIMGRID_DEP} -lns${NS3_VERSION}-${lib}${NS3_SUFFIX}") @@ -820,7 +823,7 @@ if((NOT DEFINED enable_python) OR enable_python) endif() endif() - if(NOT PYTHONLIBS_FOUND) + if(NOT PYTHONLIBS_FOUND AND NOT Python3_Development_FOUND) message(STATUS "Python libs not found. Turn pybind11 off.") set(pybind11_FOUND OFF)