方法一:使用configure_file()命令 configure_file(example.txt${CMAKE_CURRENT_BINARY_DIR}/example.txt COPYONLY) 上述代码将在构建过程中将example.txt文件复制到${CMAKE_CURRENT_BINARY_DIR}(即构建目录)中。使用COPYONLY选项确保只复制文件,而不执行任何变量替换。 方法二:使用file(COPY ...)命令 file(COPY ...