# 遍历项目根目录下所有的 .cpp 文件file(GLOB files *.cpp */*.cpp)foreach(file${files})string(REGEX REPLACE".+/(.+)\\..*""\\1"exe${file})add_executable(${exe}${file})message(\ \ \ \ --\ src/${exe}.cpp\ will\ be\ compiled\ to\ bin/${exe})endforeach() 将这几行配置...