我有一个具有以下结构的项目:
proj:
-CMakeLists.txt
-subdir0
-CMakeLists.txt
-app0.cpp
-app1.cpp
-subdir1
-CMakeLists.txt
-app2.cpp
在构建之后,我喜欢拥有:
proj:
-CMakeLists.txt
-subdir0
-CMakeLists.txt
-app0.cpp
-app1.cpp
-subdir1
-CMakeLists.txt
-app2.cpp
-build
-subdir0
-app0.exec
-app1.exec
-subdir1
-app2.exec
CMake 文档很难阅读,我需要的只是一个示例(例如现有项目)如何设置它......
多谢!