CMake:包含子目录
目前,在我的 CMake 列表中:
FIND_PATH(BOINC_INCLUDE_DIR NAMES boinc_api.h
PATH_SUFFIXES boinc
DOC "The Boinc include directory (where boinc_api.h is)")
此命令查找目录 /usr/include/boinc。 但我想添加boinc目录中的所有子目录。 怎么办呢?
非常感谢。
I have currently, in my CMake lists :
FIND_PATH(BOINC_INCLUDE_DIR NAMES boinc_api.h
PATH_SUFFIXES boinc
DOC "The Boinc include directory (where boinc_api.h is)")
This command find the directory /usr/include/boinc.
But I want to add all the subdirectories in the boinc directory.
How to do that ?
Thank you very much.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
尝试以下代码。它迭代 BOINC_INCLUDE_DIR 中的所有文件和目录,并将目录附加到包含目录列表:
Try the following code. It iterates through all files and directories in BOINC_INCLUDE_DIR and appends directories to include directories list: