gpt4 book ai didi

python - 如何在 cmake 中设置 python 版本 2.7.2?

转载 作者:太空宇宙 更新时间:2023-11-04 05:50:36 24 4
gpt4 key购买 nike

我有一个 CMakeLists.txt,我必须在其中通过使用 add_test 来传递由测试用例组成的 Python 脚本,如下所示:

add_test( NAME My_test COMMAND python ${CMAKE_CURRENT_LIST_DIR}/win_testing/test.py )

如何使用 Python 2.7.2 版设置和打开“test.py”?

最佳答案

使用FindPythonInterp获取要在 add_test

中使用的 Python 可执行文件路径的模块
find_package(PythonInterp 2.7 REQUIRED)
...
add_test(NAME My_test COMMAND ${PYTHON_EXECUTABLE} ... )

确保find_program里面调用FindPythonInterp.cmake可以找到Python 2.7.2

关于python - 如何在 cmake 中设置 python 版本 2.7.2?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/30432700/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com