返回介绍

5.1 使用平台无关的文件操作

发布于 2025-05-06 21:45:56 字数 5098 浏览 0 评论 0 收藏

NOTE : 此示例代码可以在 https://github.com/dev-cafe/cmake-cookbook/tree/v1.0/chapter-5/recipe-01 中找到,其中包含一个 C++例子。该示例在 CMake 3.5 版(或更高版本) 中是有效的,并且已经在 GNU/Linux、macOS 和 Windows 上进行过测试。

有些项目构建时,可能需要与平台的文件系统进行交互。也就是检查文件是否存在、创建新文件来存储临时信息、创建或提取打包文件等等。使用 CMake 不仅能够在不同的平台上生成构建系统,还能够在不复杂的逻辑情况下,进行文件操作,从而独立于操作系统。本示例将展示,如何以可移植的方式下载库文件。

准备工作

我们将展示如何提取 Eigen 库文件,并使用提取的源文件编译我们的项目。这个示例中,将重用第 3 章第 7 节的线性代数例子 linear-algebra.cpp ,用来检测外部库和程序、检测特征库。这里,假设已经包含 Eigen 库文件,已在项目构建前下载。

具体实施

项目需要解压缩 Eigen 打包文件,并相应地为目标设置包含目录:

  1. 首先,使能 C++11 项目:
    cmake_minimum_required(VERSION 3.5 FATAL_ERROR)
    ​
    project(recipe-01 LANGUAGES CXX)
    ​
    set(CMAKE_CXX_STANDARD 11)
    set(CMAKE_CXX_EXTENSIONS OFF)
    set(CMAKE_CXX_STANDARD_REQUIRED ON)
  2. 我们将自定义目标添加到构建系统中,自定义目标将提取构建目录中的库文件:
    add_custom_target(unpack-eigen
      ALL
      COMMAND
          ${CMAKE_COMMAND} -E tar xzf ${CMAKE_CURRENT_SOURCE_DIR}/eigen-eigen-5a0156e40feb.tar.gz
      COMMAND
          ${CMAKE_COMMAND} -E rename eigen-eigen-5a0156e40feb eigen-3.3.4
      WORKING_DIRECTORY
          ${CMAKE_CURRENT_BINARY_DIR}
      COMMENT
          "Unpacking Eigen3 in ${CMAKE_CURRENT_BINARY_DIR}/eigen-3.3.4"
      )
  3. 为源文件添加了一个可执行目标:
    add_executable(linear-algebra linear-algebra.cpp)
  4. 由于源文件的编译依赖于 Eigen 头文件,需要显式地指定可执行目标对自定义目标的依赖关系:
    add_dependencies(linear-algebra unpack-eigen)
  5. 最后,指定包含哪些目录:
    target_include_directories(linear-algebra
      PRIVATE
          ${CMAKE_CURRENT_BINARY_DIR}/eigen-3.3.4
      )

工作原理

细看 add_custom_target 这个命令:

add_custom_target(unpack-eigen
  ALL
  COMMAND
      ${CMAKE_COMMAND} -E tar xzf ${CMAKE_CURRENT_SOURCE_DIR}/eigen-eigen-5a0156e40feb.tar.gz
  COMMAND
      ${CMAKE_COMMAND} -E rename eigen-eigen-5a0156e40feb eigen-3.3.4
  WORKING_DIRECTORY
      ${CMAKE_CURRENT_BINARY_DIR}
  COMMENT
      "Unpacking Eigen3 in ${CMAKE_CURRENT_BINARY_DIR}/eigen-3.3.4"
  )

构建系统中引入了一个名为 unpack-eigen 的目标。因为我们传递了 ALL 参数,目标将始终被执行。 COMMAND 参数指定要执行哪些命令。本例中,我们希望提取存档并将提取的目录重命名为 egan -3.3.4 ,通过以下两个命令实现:

${CMAKE_COMMAND} -E tar xzf ${CMAKE_CURRENT_SOURCE_DIR}/eigen-eigen-
5a0156e40feb.tar.gz
${CMAKE_COMMAND} -E rename eigen-eigen-5a0156e40feb eigen-3.3.4

注意,使用 -E 标志调用 CMake 命令本身来执行实际的工作。对于许多常见操作,CMake 实现了一个对所有操作系统都通用的接口,这使得构建系统独立于特定的平台。 add_custom_target 命令中的下一个参数是工作目录。我们的示例中,它对应于构建目录: CMAKE_CURRENT_BINARY_DIR 。最后一个参数 COMMENT ,用于指定 CMake 在执行自定义目标时输出什么样的消息。

更多信息

构建过程中必须执行一系列没有输出的命令时,可以使用 add_custom_target 命令。正如我们在本示例中所示,可以将自定义目标指定为项目中其他目标的依赖项。此外,自定义目标还可以依赖于其他目标。

使用 -E 标志可以以与操作系统无关的方式,运行许多公共操作。运行 cmake -Ecmake -E help 可以获得特定操作系统的完整列表。例如,这是 Linux 系统上命令的摘要:

Usage: cmake -E <command> [arguments...]
Available commands:
  capabilities              - Report capabilities built into cmake in JSON format
  chdir dir cmd [args...]   - run command in a given directory
  compare_files file1 file2 - check if file1 is same as file2
  copy <file>... destination  - copy files to destination (either file or directory)
  copy_directory <dir>... destination   - copy content of <dir>... directories to 'destination' directory
  copy_if_different <file>... destination  - copy files if it has changed
  echo [<string>...]        - displays arguments as text
  echo_append [<string>...] - displays arguments as text but no new line
  env [--unset=NAME]... [NAME=VALUE]... COMMAND [ARG]...
                            - run command in a modified environment
  environment               - display the current environment
  make_directory <dir>...   - create parent and <dir> directories
  md5sum <file>...          - create MD5 checksum of files
  sha1sum <file>...         - create SHA1 checksum of files
  sha224sum <file>...       - create SHA224 checksum of files
  sha256sum <file>...       - create SHA256 checksum of files
  sha384sum <file>...       - create SHA384 checksum of files
  sha512sum <file>...       - create SHA512 checksum of files
  remove [-f] <file>...     - remove the file(s), use -f to force it
  remove_directory dir      - remove a directory and its contents
  rename oldname newname    - rename a file or directory (on one volume)
  server                    - start cmake in server mode
  sleep <number>...         - sleep for given number of seconds
  tar [cxt][vf][zjJ] file.tar [file/dir1 file/dir2 ...]
                            - create or extract a tar or zip archive
  time command [args...]    - run command and display elapsed time
  touch file                - touch a file.
  touch_nocreate file       - touch a file but do not create it.
Available on UNIX only:
  create_symlink old new    - create a symbolic link new -> old

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。
列表为空,暂无数据
    我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。