cmake--多級目錄工程

前言ui

不少大工程由不一樣動態庫和程序構成,並表現爲多級目錄和子工程的樣式。spa

一, 目錄結構get

├── CMakeLists.txt  -------------------->[1]
├── subbinary
│           ├── CMakeLists.txt----------->[2]
│           └── main.cpp
├── sublibrary1
│           ├── CMakeLists.txt------------>[3]
│           ├── include
│           │          └── sublib1
│           │                       └── sublib1.h
│           └── src
│                    └── sublib1.cpp
└── sublibrary2
              ├── CMakeLists.txt------------>[4]
              └── include
                      └── sublib2
                              └── sublib2.htable

* link:CMakeLists.txt[] - Top level CMakeLists.txt
* link:subbinary/CMakeLists.txt[] - to make the executable
* link:subbinary/main.cpp[] - source for the executable
* link:sublibrary1/CMakeLists.txt[] - to make a static library
* link:sublibrary1/include/sublib1/sublib1.h[]
* link:sublibrary1/src/sublib2.cpp[]
* link:sublibrary2/CMakeLists.txt[] - to setup header only library
* link:sublibrary2/include/sublib2/sublib2.h[]class

二,cmake腳本require

├── CMakeLists.txt  -------------------->[1]List

cmake_minimum_required (VERSION 3.5)程序

project(subprojects)im

# 添加子目錄
add_subdirectory(sublibrary1)
add_subdirectory(sublibrary2)
add_subdirectory(subbinary)腳本

├── CMakeLists.txt----------->[2]

project(subbinary)

# 建立可執行程序
add_executable(${PROJECT_NAME} main.cpp)

#  使用別名 sub::lib1 連接subproject1下的靜態庫 
# 使用別名 sub::lib2 連接subproject2下的庫文件
target_link_libraries(${PROJECT_NAME}
sub::lib1
sub::lib2
)

├── CMakeLists.txt------------>[3]

project (sublibrary1)

# 添加工程源文件到庫,設置庫別名

add_library(${PROJECT_NAME} src/sublib1.cpp)
add_library(sub::lib1 ALIAS ${PROJECT_NAME})

# 包含相關的頭文件

target_include_directories( ${PROJECT_NAME}
PUBLIC ${PROJECT_SOURCE_DIR}/include
)

├── CMakeLists.txt------------>[4]

project (sublibrary2)

add_library(${PROJECT_NAME} INTERFACE)
add_library(sub::lib2 ALIAS ${PROJECT_NAME})

target_include_directories(${PROJECT_NAME} INTERFACE ${PROJECT_SOURCE_DIR}/include)

相關文章
相關標籤/搜索