Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我想尝试 CMake 来管理一个新的 C++ 项目。但是,有些文件是自动生成的。我无法知道生成文件的名称。我唯一知道的是这些文件都是在 foo/ 目录下生成的。有没有办法让 CMake 包含 foo/ 中的所有 .cpp 文件?
谢谢你。
你可以这样做GLOB
GLOB
FILE(GLOB ALL_CPP_SRCS *.cpp)