/
githubmirror
/
ceph
Обзор
Документация
Войти
/
githubmirror
/
ceph
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
v21.3.0
cmake/modules/FindCython.cmake
16 строк
540 B
Kefu Chai
cmake: drop WITH_PYTHON2 option
19 дек 2019, 05:58
19 дек 2019, 05:58
5fc657b
Код
Авторство
О чём код?
# # Cython # # Try to run Cython, to make sure it works: execute_process( COMMAND ${Python3_EXECUTABLE} -m cython --version RESULT_VARIABLE cython_result ERROR_VARIABLE cython_output) if(cython_result EQUAL 0) string(REGEX REPLACE "^Cython version ([0-9]+\\.[0-9]+).*" "\\1" CYTHON_VERSION "${cython_output}") else() message(SEND_ERROR "Could not find cython${PYTHON_VERSION}: ${cython_output}") endif() include(FindPackageHandleStandardArgs) find_package_handle_standard_args(Cython${PYTHON_VERSION} DEFAULT_MSG CYTHON_VERSION)