参考:
http://blog.csdn.net/netnote/article/details/4051620
http://blog.csdn.net/fan_hai_ping/article/details/42524205
栗子:
1 project(es) 2 SET(CMAKE_BUILD_TYPE Debug CACHE STRING "set build type to debug") 3 SET(CMAKE_C_COMPILER g++) 4 SET(CMAKE_CXX_FLAGS -g) 5 add_compile_options(-std=c++11) 6 cmake_minimum_required(VERSION 2.8) 7 aux_source_directory(. DIR_SRCS) 8 add_executable(es ${DIR_SRCS})
第一行,指定项目名称为es;
第二行,指定项目版本为debug;
第三行,指定编译器为g++;
第四行,指定编译参数为-g;
第五行,添加c++11支持;
第六行,指定cmake版本;
第七行,指定文件目录为.,即当前目录;
第八行,添加可执行文件,名字为es,放在当前目录下。
原创文章,作者:ItWorker,如若转载,请注明出处:https://blog.ytso.com/2637.html