标签: c++ cmake
对于c ++项目,我可以使用
aux_source_directory添加所有cpp文件;但是这个命令不包含头文件;无论如何添加头文件?
aux_source_directory
答案 0 :(得分:1)
您可以使用file命令添加所需的所有文件,例如
file
file(GLOB SOURCES your-folder/*.hxx your-folder/*.cxx ) add_executable(yourProj ${SOURCES})