cmake最简用法

  1. 安装cmake
sudo apt-get install cmake
  1. 测试源码文件
#include<stdio.h>
int main(void)
{
    printf("hello world");
    return 0;
}
  1. 创建CMakeLists.txt
CMAKE_MINIMUM_REQUIRED(VERSION 2.8)     #指定最小的版本号
PROJECT(HELLOWORLD)                     #工程名
AUX_SOURCE_DIRECTORY(. SRC_LIST)        #源码目录下所有源码文件指定一个别名SRC_LIST
ADD_EXECUTABLE(hello ${SRC_LIST})       #指定生成目标

cmake中内置命令是不区分大小写的。

  1. 创建一个编译目录build,cmake之后make,就能编译出可执行文件
test@ubuntu:~/testcmake$ mkdir build
test@ubuntu:~/testcmake$ cd build
test@ubuntu:~/testcmake/build$ cmake ..
-- The C compiler identification is GNU
-- The CXX compiler identification is GNU
-- Check for working C compiler: /usr/bin/gcc
-- Check for working C compiler: /usr/bin/gcc -- works
-- Detecting C compiler ABI info
-- Detecting C compiler ABI info - done
-- Check for working CXX compiler: /usr/bin/c++
-- Check for working CXX compiler: /usr/bin/c++ -- works
-- Detecting CXX compiler ABI info
-- Detecting CXX compiler ABI info - done
-- Configuring done
-- Generating done
-- Build files have been written to: /home/test/testcmake/build
test@ubuntu:~/testcmake/build$ ll
total 36
drwxrwxr-x 3 test test  4096 Jul 21 07:36 ./
drwxrwxr-x 3 test test  4096 Jul 21 07:36 ../
-rw-rw-r-- 1 test test 10704 Jul 21 07:36 CMakeCache.txt
drwxrwxr-x 6 test test  4096 Jul 21 07:36 CMakeFiles/
-rw-rw-r-- 1 test test  1582 Jul 21 07:36 cmake_install.cmake
-rw-rw-r-- 1 test test  4493 Jul 21 07:36 Makefile
test@ubuntu:~/testcmake/build$ make
Scanning dependencies of target hello
[100%] Building C object CMakeFiles/hello.dir/main.c.o
Linking C executable hello
[100%] Built target hello
test@ubuntu:~/testcmake/build$ ll
total 48
drwxrwxr-x 3 test test  4096 Jul 21 07:37 ./
drwxrwxr-x 3 test test  4096 Jul 21 07:36 ../
-rw-rw-r-- 1 test test 10704 Jul 21 07:36 CMakeCache.txt
drwxrwxr-x 6 test test  4096 Jul 21 07:37 CMakeFiles/
-rw-rw-r-- 1 test test  1582 Jul 21 07:36 cmake_install.cmake
-rwxrwxr-x 1 test test  8378 Jul 21 07:37 hello*
-rw-rw-r-- 1 test test  4493 Jul 21 07:36 Makefile
test@ubuntu:~/testcmake/build$ ./hello 
hello world
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值