栏目分类:
子分类:
返回
名师互学网用户登录
快速导航关闭
当前搜索
当前分类
子分类
实用工具
热门搜索
名师互学网 > IT > 软件开发 > 后端开发 > Python

命令行 cmake 指定 python 路径

Python 更新时间: 发布时间: IT归档 最新发布 模块sitemap 名妆网 法律咨询 聚返吧 英语巴士网 伯小乐 网商动力

命令行 cmake 指定 python 路径

命令行 cmake 指定 python 路径(这里写自定义目录标题)

命令行 cmake
cmake .. 
-DPYTHON_INCLUDE_DIR=$(python -c "from distutils.sysconfig import get_python_inc; print(get_python_inc())")  
-DPYTHON_LIBRARY=$(python -c "import distutils.sysconfig as sysconfig; print(sysconfig.get_config_var('LIBDIR'))")

cmake 指定变量的格式是

-D{:}=

例如,给 FILEPATH 类型的变量 PYTHON_LIBRARIES 赋值 “C:/Python35/libs/python35.lib” 的代码为:

-DPYTHON_LIBRARIES:FILEPATH=C:/Python35/libs/python35.lib

上述 cmake 利用 python 解释器返回的信息填充了参数值,是最可靠的,无需手工输入。

Thus, the trick is to fill those parameters with the returned information from the python interpreter, which is the most reliable. This may work independently of your python location/version (also for Anaconda users)

转载请注明:文章转载自 www.mshxw.com
本文地址:https://www.mshxw.com/it/833921.html
我们一直用心在做
关于我们 文章归档 网站地图 联系我们

版权所有 (c)2021-2022 MSHXW.COM

ICP备案号:晋ICP备2021003244-6号