// 工程名
PROJECT (HELLO)
// 设置变量
SET(SRC_LIST main.c)
// 打印变量
MESSAGE(STATUS "This is BINARY dir " ${PROJECT_BINARY_DIR})
MESSAGE(STATUS "This is SOURCE dir "${HELLO_SOURCE_DIR})
// 生成可执行程序
ADD_EXECUTABLE(hello SRC_LIST)
// 生成库
add_library(hello static ${LIB_SRC_LIST})
add_library(hello shared ${LIB_SRC_LIST})
// 向当前工程添加存放源文件的子目录,并把中间文件、目标文件放在bin目录里
add_subdirectory(src bin)
// 指定最终的目标位置,不包括中间文件
set(EXECUTABLE_OUTPUT_PATH ${PROJECT_BINARY_DIR}/../bin)
set(LIBRARY_OUTPUT_PATH ${PROJECT_BINARY_DIR}/../lib)
// 指定头文件搜索路径
include_directories(lib)
// 添加库搜索路径
link_directories(lib)
// 添加库
target_link_libraries(main hello)
target_link_libraries(main libhello.so)
// 查找库
bash 中设置如下
export CMAKE_INCLUDE_PATH = ./include
export CMAKE_LIBRARY_PATH = ./lib
include_directories(/usr/include/hello)可以替换为
find_path(MyHeader hello.h)
if(not MyHeader)
include_directories(${MyHeader})
message(fatal_error "header not found")
endif(MyHeader)
// 增加宏定义
add_definitions(-DDEBUG -DWL_DEBUG)
// 增加依赖,确保在编译本target前,其他target已经编译过
add_dependencies(target_name depend_target1 depend_target2)
// 增加make test
add_test(test_name exename arg1 arg2 )
enable_testing()
备注:
1. 推荐外部构建,因为cmake不会生成make distclean, 没有办法清理生成中间文件。
如:在build目录中执行cmake ..
2. 指定目标的生成目录,add_subdirectory(source_dir [binary_dir] [EXCLUDE_FROM_ALL]),
EXCLUDE_FROM_ALL表示把目录从编译过程中排除
3. SUBDIRS(DIR1, DIR2...)已经不推荐使用, 在build目录下生成DIR1, DIR2, 每个工程的
中间文件都再各自的目录
4. 设置EXECUTABLE_OUTPUT_PATH\LIBRARY_OUTPUT_PATH可以在根目录和子目录中,但原则上放
在子目录
5. add_library不能生成一个名字的动态库、静态库(libhello.so libhello.a),需设置输出的名字
set_target_properties(hello_static properties output_name "hello")
6. 每次生成新的target时,会尝试清除使用这个名字的库,需要设置
set_target_properties(hello_static properties clean_direct_output 1)
警告:
1. CMake Warning (dev) in CMakeLists.txt:
No cmake_minimum_required command is present. A line of code such as
cmake_minimum_required(VERSION 2.8)
根据提示,在顶层的cmakelist中添加上面的命令
2. CMake Warning (dev) at NetModule/CMakeLists.txt:8 (link_directories):
This command specifies the relative path
../ACE/6.0.1/ACE_wrappers/lib/x64
根据cmake --help-policy CMP0015知道,OLD的行为是直接传递相对路径给链接器,NEW的行为是
在相对路径前面添加CMAKE_CURRENT_SOURCE_DIR变成一个绝对路径,然后传递给链接器。采用
cmake_policy(SET CMP0015 NEW)好些
3.
cmake学习
最新推荐文章于 2022-06-09 20:36:59 发布