如何使用cmake包含目录中的所有文件?
我想尝试 CMake 来管理一个新的 C++ 项目。 但是,有些文件是自动生成的。 我无法知道生成的文件的名称。 我唯一知道的是这些文件都是在 foo/ 目录中生成的。 有没有办法要求 CMake 包含 foo/ 中的所有 .cpp 文件?
谢谢。
I want to try CMake to manage a new C++ project. However, some files are automatically generated. I have no way to know the name of the generated files. The only thing I know is that these files are all generated in the foo/ directory. Is there a way to ask CMake to include all .cpp files from foo/ ?
Thank you.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您可以使用
GLOB
来做到这一点You may do this with
GLOB