84669 personnes étudient
152542 personnes étudient
20005 personnes étudient
5487 personnes étudient
7821 personnes étudient
359900 personnes étudient
3350 personnes étudient
180660 personnes étudient
48569 personnes étudient
18603 personnes étudient
40936 personnes étudient
1549 personnes étudient
1183 personnes étudient
32909 personnes étudient
针对debug/release版本指定不同的编译参数可以通过CMAKE_BUILD_TYPE来判断,添加不同的编译参数。
debug/release
CMAKE_BUILD_TYPE
但是如果是针对生成动态库和静态库需要设置不同的编译参数需要怎么做呢?
# 编译共享库: ADD_LIBRARY(aaa SHARED ${SRC_LIST}) 需要针对这个目标添加编译参数 # 静态库: ADD_LIBRARY(aaa_static STATIC ${SRC_LIST})
闭关修行中......
CMake不是支持条件分支吗https://cmake.org/cmake/help/v3.0/command/if.html
CMake不是支持条件分支吗
https://cmake.org/cmake/help/v3.0/command/if.html