CMake教程读书笔记-第一步,一个基本的开始

翻译:原文参见:cmake-tutorial

实践测试路径: 实践过程

下面是一个 step-by-step 教程,涵盖了CMake能够涉及的通用的编译系统问题。这些内容可能在其它的资料中 (http://www.kitware.com/products/books.php) 已经分别被介绍过。

但是如果能够看到它们在整体是如何在一个实例项目中运作的,将会非常有帮助。这个教程可以在 CMake源代码中的 Tests/Tutorial 目录中找到。每个步骤有它自己的子目录,包含了那个步骤的内容。

第一步,一个基本的开始

最基本的项目是一个只有一个由源代码编译而来的可执行文件。对于一个简单的项目,我们只需要在 CMakeLists 文件中加入两行代码。

最基本的过程

这里是我们这个教程的起点。

CMakeLists.txt

文件内容如下:

cmake_minimum_required (VERSION 2.6)
project (Tutorial)
add_executable(Tutorial tutorial.cxx)

注意,这个例子在 CMakeLists 文件中使用了小写字母的命令。CMake支持大写,小写,混合大小写的命令。

tutorial.cxx

源代码文件 tutorial.cxx 计算一个数字的平方根,这个代码文件的第一个版本非常简单,如下:

// A simple program that computes the square root of a number
#include <stdio.h>
#include <stdlib.h>
#include <math.h>
int main (int argc, char *argv[])
{
  if (argc < 2)
    {
    fprintf(stdout,"Usage: %s number\n",argv[0]);
    return 1;
    }
  double inputValue = atof(argv[1]);
  double outputValue = sqrt(inputValue);
  fprintf(stdout,"The square root of %g is %g\n",
          inputValue, outputValue);
  return 0;
}

详细过程

下面通过实践来回顾一下具体发生了什么。

  1. 原始文件目录结构

    经过上面实践,我们的目录中只有两个文件,如下:

    $ls -p
    tutorial/
    
    $tree tutorial/
    tutorial/
    ├── CMakeLists.txt
    └── tutorial.cpp
    
    0 directories, 2 files
    

    当前路径下,总共只有1个目录 tutorial , 2个文件。

  2. cmake 生成 Makefile

    将项目目录 tutorial 做为参数,传递给 cmake 之后,会在当前目录(运行 cmake 的目录)生成许多文件,包括 Makefile, 如下:

    $cmake tutorial/
    
    $ls -p
    CMakeCache.txt  CMakeFiles/  cmake_install.cmake  Makefile  tutorial/
    
    $tree .
    .
    ├── CMakeCache.txt
    ├── CMakeFiles
    │   ├── CMakeCCompiler.cmake
    │   ├── cmake.check_cache
    │   ├── CMakeCXXCompiler.cmake
    │   ├── CMakeDetermineCompilerABI_C.bin
    │   ├── CMakeDetermineCompilerABI_CXX.bin
    │   ├── CMakeDirectoryInformation.cmake
    │   ├── CMakeOutput.log
    │   ├── CMakeSystem.cmake
    │   ├── CMakeTmp
    │   │   └── CMakeFiles
    │   │       └── cmTryCompileExec.dir
    │   ├── CompilerIdC
    │   │   ├── a.out
    │   │   └── CMakeCCompilerId.c
    │   ├── CompilerIdCXX
    │   │   ├── a.out
    │   │   └── CMakeCXXCompilerId.cpp
    │   ├── Makefile2
    │   ├── Makefile.cmake
    │   ├── progress.marks
    │   ├── TargetDirectories.txt
    │   └── Tutorial.dir
    │       ├── build.make
    │       ├── cmake_clean.cmake
    │       ├── DependInfo.cmake
    │       ├── depend.make
    │       ├── flags.make
    │       ├── link.txt
    │       └── progress.make
    ├── cmake_install.cmake
    ├── Makefile
    └── tutorial
     ├── CMakeLists.txt
     └── tutorial.cpp
    
     8 directories, 28 files
    

    cmake 之后,当前目录下多了 CMakeCache.txt, CMakeFiles, cmake_install.cmake, Makefile 。当前文件总共是8个目录,28个文件, tutorial 内容不变。其中 Makefile 是生成的 makefile。

  3. make 编译

    $make
    Scanning dependencies of target Tutorial
    [100%] Building CXX object CMakeFiles/Tutorial.dir/tutorial.cpp.o
    Linking CXX executable Tutorial
    [100%] Built target Tutorial
    
    $ls -p
    CMakeCache.txt  CMakeFiles/  cmake_install.cmake  Makefile  tree.txt  tutorial/  Tutorial
    
    $tree .
    .
    ├── CMakeCache.txt
    ├── CMakeFiles
    │   ├── CMakeCCompiler.cmake
    │   ├── cmake.check_cache
    │   ├── CMakeCXXCompiler.cmake
    │   ├── CMakeDetermineCompilerABI_C.bin
    │   ├── CMakeDetermineCompilerABI_CXX.bin
    │   ├── CMakeDirectoryInformation.cmake
    │   ├── CMakeOutput.log
    │   ├── CMakeSystem.cmake
    │   ├── CMakeTmp
    │   │   └── CMakeFiles
    │   │       └── cmTryCompileExec.dir
    │   ├── CompilerIdC
    │   │   ├── a.out
    │   │   └── CMakeCCompilerId.c
    │   ├── CompilerIdCXX
    │   │   ├── a.out
    │   │   └── CMakeCXXCompilerId.cpp
    │   ├── Makefile2
    │   ├── Makefile.cmake
    │   ├── progress.marks
    │   ├── TargetDirectories.txt
    │   └── Tutorial.dir
    │       ├── build.make
    │       ├── cmake_clean.cmake
    │       ├── CXX.includecache
    │       ├── DependInfo.cmake
    │       ├── depend.internal
    │       ├── depend.make
    │       ├── flags.make
    │       ├── link.txt
    │       ├── progress.make
    │       └── tutorial.cpp.o
    ├── cmake_install.cmake
    ├── Makefile
    ├── tree.txt
    ├── tutorial
    │   ├── CMakeLists.txt
    │   └── tutorial.cpp
    └── Tutorial
    
    8 directories, 33 files
    

    make 之后当前路径下比之前多了: CMakeFiles/Tutorial.dir/CXX.includecache, CMakeFiles/Tutorial.dir/depend.internal, CMakeFiles/Tutorial.dir/tutorial.cpp.o, Tutorial ,总共8个目录33个文件, tutorial 目录内容仍旧不变。其中, Tutorial 是可执行文件。

    另外,实践后, make cleanmake 少了 TutorialCMakeFiles/Tutorial.dir/tutorial.cpp.o

更多信息

通常过程

代码如下:

$ tree .
.
└── tutorial
    ├── CMakeLists.txt
    └── tutorial.cpp

1 directory, 2 files

命令如下:

$ mkdir build && cd build
$ cmake
$ make
$ ./Tutorial 
Usage: ./Tutorial number
$ ./Tutorial 25
The square root of 25 is 5

添加版本号和配置头文件

现在我们将为项目加入的第一个特性,为可执行文件和项目提供一个版本号。你可以在源代码中使用互斥的代码来实现这一点,但是使用 CMakeLists 文件来做这些事情会很灵活。

CMakeLists.txt

为了添加一个版本号,我们需要修改 CMakeLists 文件如下:

cmake_minimum_required (VERSION 2.6)
project (Tutorial)
# The version number.
set (Tutorial_VERSION_MAJOR 1)
set (Tutorial_VERSION_MINOR 0)
 
# configure a header file to pass some of the CMake settings
# to the source code
configure_file (
  "${PROJECT_SOURCE_DIR}/TutorialConfig.h.in"
  "${PROJECT_BINARY_DIR}/TutorialConfig.h"
  )
 
# add the binary tree to the search path for include files
# so that we will find TutorialConfig.h
include_directories("${PROJECT_BINARY_DIR}")
 
# add the executable
add_executable(Tutorial tutorial.cxx)

这里,由于配置文件将会被写入到 binary tree 中(对应后面运行 cmake 的目录 ${PROJECT_BINARY_DIR}, 也就是生成可执行文件的目录),我们必须添加相应的目录到 paths 列表中(对应 include_directories),以便能够搜索 include 文件(对应 ${PROJECT_BINARY_DIR}/TutorialConfig.h )。

TutorialConfig.h.in

之后,我们在 source tree 中(对应 Tutorial 的代码目录 ${PROJECT_SOURCE_DIR} ),创建一个 TutorialConfig.h.in 文件,内容如下:

// the configured options and settings for Tutorial
#define Tutorial_VERSION_MAJOR @Tutorial_VERSION_MAJOR@
#define Tutorial_VERSION_MINOR @Tutorial_VERSION_MINOR@

当CMake配置这个头文件的时候, @Tutorial_VERSION_MAJOR@@Tutorial_VERSION_MINOR@ 的值将会被替换为 CMakeLists 文件中定义的相应变量值。

tutorial.cxx

下一步,我们将修改 tutorial.cxx 文件,这个文件包含配置好的头文件,并且使用其中定义的版本号宏。代码如下:

// A simple program that computes the square root of a number
#include <stdio.h>
#include <stdlib.h>
#include <math.h>
#include "TutorialConfig.h"

int main (int argc, char *argv[])
{
  if (argc < 2)
    {
    fprintf(stdout,"%s Version %d.%d\n",
            argv[0],
            Tutorial_VERSION_MAJOR,
            Tutorial_VERSION_MINOR);
    fprintf(stdout,"Usage: %s number\n",argv[0]);
    return 1;
    }
  double inputValue = atof(argv[1]);
  double outputValue = sqrt(inputValue);
  fprintf(stdout,"The square root of %g is %g\n",
          inputValue, outputValue);
  return 0;
}

对源代码主要的修改,其实就是包含了一个 TutorialConfig.h 文件,并且在 tutorial.cxx 中打印使用消息字串时添加版本号的信息。

过程

下面通过时间回顾一下具体发生了什么。
注意,这里为了便于记录和对比,我们首先在编译目录中建立了 tree.origin, tree.cmakelog, tree.makelog, tree.cleanlog 以记录文件的变化。

  1. 原始文件目录结构

    $ls -p
    tree.cleanlog  tree.cmakelog  tree.makelog  tree.origin  tutorial/
    
    $tree . >tree.origin
    
    $cat tree.origin
    .
    ├── tree.cleanlog
    ├── tree.cmakelog
    ├── tree.makelog
    ├── tree.origin
    └── tutorial
        ├── CMakeLists.txt
        ├── TutorialConfig.h.in
        └── tutorial.cpp
    
    1 directory, 7 files
    
  2. cmake 生成 Makefile

    $cmake tutorial
    $tree . >tree.cmakelog
    $cat tree.cmakelog
    .
    ├── CMakeCache.txt
    ├── CMakeFiles
    │   ├── CMakeCCompiler.cmake
    │   ├── cmake.check_cache
    │   ├── CMakeCXXCompiler.cmake
    │   ├── CMakeDetermineCompilerABI_C.bin
    │   ├── CMakeDetermineCompilerABI_CXX.bin
    │   ├── CMakeDirectoryInformation.cmake
    │   ├── CMakeOutput.log
    │   ├── CMakeSystem.cmake
    │   ├── CMakeTmp
    │   │   └── CMakeFiles
    │   │       └── cmTryCompileExec.dir
    │   ├── CompilerIdC
    │   │   ├── a.out
    │   │   └── CMakeCCompilerId.c
    │   ├── CompilerIdCXX
    │   │   ├── a.out
    │   │   └── CMakeCXXCompilerId.cpp
    │   ├── Makefile2
    │   ├── Makefile.cmake
    │   ├── progress.marks
    │   ├── TargetDirectories.txt
    │   └── Tutorial.dir
    │       ├── build.make
    │       ├── cmake_clean.cmake
    │       ├── DependInfo.cmake
    │       ├── depend.make
    │       ├── flags.make
    │       ├── link.txt
    │       └── progress.make
    ├── cmake_install.cmake
    ├── Makefile
    ├── tree.cleanlog
    ├── tree.cmakelog
    ├── tree.makelog
    ├── tree.origin
    ├── tutorial
    │   ├── CMakeLists.txt
    │   ├── TutorialConfig.h.in
    │   └── tutorial.cpp
    └── TutorialConfig.h
    
    8 directories, 34 files
    

    注意,生成的 TutorialConfig.h 生成路径是当前运行 cmake 的路径。 tutorial 源码路径内容不变(除非直接在源码路径中运行 cmake )。

  3. make 编译

    $make
    Scanning dependencies of target Tutorial
    [100%] Building CXX object CMakeFiles/Tutorial.dir/tutorial.cpp.o
    Linking CXX executable Tutorial
    [100%] Built target Tutorial
    
    $tree .>tree.makelog
    $cat tree.makelog
    .
    ├── CMakeCache.txt
    ├── CMakeFiles
    │   ├── CMakeCCompiler.cmake
    │   ├── cmake.check_cache
    │   ├── CMakeCXXCompiler.cmake
    │   ├── CMakeDetermineCompilerABI_C.bin
    │   ├── CMakeDetermineCompilerABI_CXX.bin
    │   ├── CMakeDirectoryInformation.cmake
    │   ├── CMakeOutput.log
    │   ├── CMakeSystem.cmake
    │   ├── CMakeTmp
    │   │   └── CMakeFiles
    │   │       └── cmTryCompileExec.dir
    │   ├── CompilerIdC
    │   │   ├── a.out
    │   │   └── CMakeCCompilerId.c
    │   ├── CompilerIdCXX
    │   │   ├── a.out
    │   │   └── CMakeCXXCompilerId.cpp
    │   ├── Makefile2
    │   ├── Makefile.cmake
    │   ├── progress.marks
    │   ├── TargetDirectories.txt
    │   └── Tutorial.dir
    │       ├── build.make
    │       ├── cmake_clean.cmake
    │       ├── CXX.includecache
    │       ├── DependInfo.cmake
    │       ├── depend.internal
    │       ├── depend.make
    │       ├── flags.make
    │       ├── link.txt
    │       ├── progress.make
    │       └── tutorial.cpp.o
    ├── cmake_install.cmake
    ├── Makefile
    ├── tree.cleanlog
    ├── tree.cmakelog
    ├── tree.makelog
    ├── tree.origin
    ├── tutorial
    │   ├── CMakeLists.txt
    │   ├── TutorialConfig.h.in
    │   └── tutorial.cpp
    ├── Tutorial
    └── TutorialConfig.h
    
    8 directories, 38 files
©著作权归作者所有,转载或内容合作请联系作者
  • 序言:七十年代末,一起剥皮案震惊了整个滨河市,随后出现的几起案子,更是在滨河造成了极大的恐慌,老刑警刘岩,带你破解...
    沈念sama阅读 215,539评论 6 497
  • 序言:滨河连续发生了三起死亡事件,死亡现场离奇诡异,居然都是意外死亡,警方通过查阅死者的电脑和手机,发现死者居然都...
    沈念sama阅读 91,911评论 3 391
  • 文/潘晓璐 我一进店门,熙熙楼的掌柜王于贵愁眉苦脸地迎上来,“玉大人,你说我怎么就摊上这事。” “怎么了?”我有些...
    开封第一讲书人阅读 161,337评论 0 351
  • 文/不坏的土叔 我叫张陵,是天一观的道长。 经常有香客问我,道长,这世上最难降的妖魔是什么? 我笑而不...
    开封第一讲书人阅读 57,723评论 1 290
  • 正文 为了忘掉前任,我火速办了婚礼,结果婚礼上,老公的妹妹穿的比我还像新娘。我一直安慰自己,他们只是感情好,可当我...
    茶点故事阅读 66,795评论 6 388
  • 文/花漫 我一把揭开白布。 她就那样静静地躺着,像睡着了一般。 火红的嫁衣衬着肌肤如雪。 梳的纹丝不乱的头发上,一...
    开封第一讲书人阅读 50,762评论 1 294
  • 那天,我揣着相机与录音,去河边找鬼。 笑死,一个胖子当着我的面吹牛,可吹牛的内容都是我干的。 我是一名探鬼主播,决...
    沈念sama阅读 39,742评论 3 416
  • 文/苍兰香墨 我猛地睁开眼,长吁一口气:“原来是场噩梦啊……” “哼!你这毒妇竟也来了?” 一声冷哼从身侧响起,我...
    开封第一讲书人阅读 38,508评论 0 271
  • 序言:老挝万荣一对情侣失踪,失踪者是张志新(化名)和其女友刘颖,没想到半个月后,有当地人在树林里发现了一具尸体,经...
    沈念sama阅读 44,954评论 1 308
  • 正文 独居荒郊野岭守林人离奇死亡,尸身上长有42处带血的脓包…… 初始之章·张勋 以下内容为张勋视角 年9月15日...
    茶点故事阅读 37,247评论 2 331
  • 正文 我和宋清朗相恋三年,在试婚纱的时候发现自己被绿了。 大学时的朋友给我发了我未婚夫和他白月光在一起吃饭的照片。...
    茶点故事阅读 39,404评论 1 345
  • 序言:一个原本活蹦乱跳的男人离奇死亡,死状恐怖,灵堂内的尸体忽然破棺而出,到底是诈尸还是另有隐情,我是刑警宁泽,带...
    沈念sama阅读 35,104评论 5 340
  • 正文 年R本政府宣布,位于F岛的核电站,受9级特大地震影响,放射性物质发生泄漏。R本人自食恶果不足惜,却给世界环境...
    茶点故事阅读 40,736评论 3 324
  • 文/蒙蒙 一、第九天 我趴在偏房一处隐蔽的房顶上张望。 院中可真热闹,春花似锦、人声如沸。这庄子的主人今日做“春日...
    开封第一讲书人阅读 31,352评论 0 21
  • 文/苍兰香墨 我抬头看了看天上的太阳。三九已至,却和暖如春,着一层夹袄步出监牢的瞬间,已是汗流浃背。 一阵脚步声响...
    开封第一讲书人阅读 32,557评论 1 268
  • 我被黑心中介骗来泰国打工, 没想到刚下飞机就差点儿被人妖公主榨干…… 1. 我叫王不留,地道东北人。 一个月前我还...
    沈念sama阅读 47,371评论 2 368
  • 正文 我出身青楼,却偏偏与公主长得像,于是被迫代替她去往敌国和亲。 传闻我的和亲对象是个残疾皇子,可洞房花烛夜当晚...
    茶点故事阅读 44,292评论 2 352

推荐阅读更多精彩内容

  • 前言 cmake是一个构建工具,它有如下特点:1、基于类BSD许可协议发布,http://cmake.org/HT...
    仙人掌__阅读 2,168评论 0 2
  • 这是一个来自官网的step-by-step的CMake教程 起点(Step 1) 参看下面的CMakeLists....
    EVANMORE阅读 41,656评论 3 12
  • 本文所有示例来源于CMake官方教程:https://cmake.org/cmake-tutorial/ CMak...
    白日昕阅读 276评论 0 0
  • 1.安装 $sudo apt-get install cmake 2.示例:简单的文件目录 sample |—...
    荷包蛋酱阅读 29,635评论 0 15
  • For English version you can check it fromCMake. 查看源码 环境: ...
    Jimmy_Will阅读 6,489评论 0 5