X-Git-Url: http://bilbo.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/blobdiff_plain/3a987e0a881dc1a0bb5a6203814f7960a5f4b07e..e9c8c210d46f749681f132dcc50436bc00881bf9:/CMakeLists.txt diff --git a/CMakeLists.txt b/CMakeLists.txt index 06992c338e..92465ca2fc 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -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)