FindPythonLibs¶
在 3.27 版本中变更: 此模块仅在策略 CMP0148
未设置为 NEW
时可用。
自 3.12 版本起已弃用: 请使用 FindPython3
, FindPython2
或 FindPython
代替。
查找 python 库
此模块查找是否安装了 Python,并确定包含文件和库的位置。它还确定库的名称。此代码设置以下变量
PYTHONLIBS_FOUND - have the Python libs been found
PYTHON_LIBRARIES - path to the python library
PYTHON_INCLUDE_PATH - path to where Python.h is found (deprecated)
PYTHON_INCLUDE_DIRS - path to where Python.h is found
PYTHON_DEBUG_LIBRARIES - path to the debug library (deprecated)
PYTHONLIBS_VERSION_STRING - version of the Python libs found (since CMake 2.8.8)
Python_ADDITIONAL_VERSIONS 变量可用于指定在搜索 Python 时应考虑的版本号列表。您需要在调用 find_package(PythonLibs) 之前设置此变量。
如果您想指定要使用的 Python 安装,则应修改以下缓存变量
PYTHON_LIBRARY - path to the python library
PYTHON_INCLUDE_DIR - path to where Python.h is found
如果同时调用 find_package(PythonInterp)
和 find_package(PythonLibs)
,请先调用 find_package(PythonInterp)
,以默认获取当前活动的 Python 版本以及一致版本的 PYTHON_LIBRARIES。