gpt4 book ai didi

cmake - cmake 在哪里寻找 .cmake 脚本?

转载 作者:行者123 更新时间:2023-12-02 08:29:05 29 4
gpt4 key购买 nike

我正在尝试像这样在 cmake 中执行 execute_process

execute_process(COMMAND ${CMAKE_COMMAND} -P myScript.cmake

这仅在文件 myScript.cmake 位于同一工作目录中时有效。

三个相关问题:

  1. cmake 是否有一个标准位置来查找 .cmake 脚本?
  2. 有没有我可以定义的 cmake 变量来告诉 cmake 去哪里找?或
  3. 我是否应该始终提供脚本的完整路径(即 -P ${PATH_VAR}/myScript.cmake)?

最佳答案

Does cmake have a standard location to look for .cmake scripts?

对于 execute_process , 不。 find_XXX 命令(例如 find_file )和 include尽管这样做。


Is there a cmake variable I can define to tell cmake where to look?

同样,对于 execute_process,没有。对于find_xxxinclude,您可以设置变量CMAKE_MODULE_PATH .


Should I always give a full path to the script (i.e., -P ${PATH_VAR}/myScript.cmake)?

这是一个不错的选择;通过完整路径不会留下不确定的余地。但是,您也可以使用相对路径。 execute_process 的默认工作目录是 CMAKE_BINARY_DIR ,因此您可以将路径传递给与之相关的脚本。

或者,您可以在 execute_process 调用中将 WORKING_DIRECTORY 指定为完整路径或相对于 CMAKE_BINARY_DIR

如果您觉得您的脚本位于标准位置,您可以考虑先调用 find_file 来“找到”它。如果找到,这将生成脚本的完整路径,并且该变量可以在您的 execute_process 调用中使用。

关于cmake - cmake 在哪里寻找 .cmake 脚本?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/29290285/

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