X-Git-Url: http://bilbo.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/blobdiff_plain/f963a5f841d6f5c409d4d8f7570d641619b52ebf..0abc9e8c70d2f3c5c98ed3429d4b630683f77c22:/CMakeLists.txt diff --git a/CMakeLists.txt b/CMakeLists.txt index 4e05c8d5a9..92465ca2fc 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -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}) @@ -820,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)