X-Git-Url: http://bilbo.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/blobdiff_plain/3a987e0a881dc1a0bb5a6203814f7960a5f4b07e..5c7688a211fb61b25744e79a3330a95bd1334446:/CMakeLists.txt diff --git a/CMakeLists.txt b/CMakeLists.txt index 06992c338e..dae34bc442 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,10 +146,11 @@ 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}) endif() SET(LIBRARY_OUTPUT_PATH ${CMAKE_BINARY_DIR}/lib) @@ -819,7 +820,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)