我的项目目录在其根目录包含一个CMakeLists.txt
文件和src
目录。还包含它自己的,它由根处的那个链接。有没有一种方法可以指定 CMake 来设置默认的全局构建目录,以便语法接近以下?include
src
CMakeLists.txt
src/CMakeLists.txt
include_directories(include)
add_executable(first main.cpp foo.cpp)
add_executable(second bar.cpp)
我想建立这个目录树:
CMakeLists.txt
src/
CMakeLists.txt
main.cpp
foo.cpp
bar.cpp
include/
...
bin/ (or build/)
first
second