书栈网 · BookStack 本次搜索耗时 0.022 秒,为您找到 1786 个相关结果.
  • 1.8 设置编译器选项

    1.8 设置编译器选项 准备工作 具体实施 如何工作 更多信息 1.8 设置编译器选项 NOTE :此示例代码可以在 https://github.com/dev-cafe/cmake-cookbook/tree/v1.0/chapter-01/recipe-08 中找到,有一个C++示例。该示例在CMake 3.5版(或更高版本)中是有效...
  • 2.4 检测处理器体系结构

    2.4 检测处理器体系结构 准备工作 具体实施 工作原理 更多信息 2.4 检测处理器体系结构 NOTE :此示例代码可以在 https://github.com/dev-cafe/cmake-cookbook/tree/v1.0/chapter-02/recipe-04 中找到,包含一个C++示例。该示例在CMake 3.5版(或更高版本...
  • 1.4 用条件句控制编译

    1.4 用条件句控制编译 具体实施 工作原理 1.4 用条件句控制编译 NOTE :这个示例代码可以在 https://github.com/dev-cafe/cmake-cookbook/tree/v1.0/chapter-01/recipe-04 找到,其中有一个C++示例。该配置在CMake 3.5版(或更高版本)测试有效的,并且已经在G...
  • 4.2 使用Catch2库进行单元测试

    4.2 使用Catch2库进行单元测试 准备工作 具体实施 工作原理 更多信息 4.2 使用Catch2库进行单元测试 NOTE :此示例代码可以在 https://github.com/dev-cafe/cmake-cookbook/tree/v1.0/chapter-04/recipe-02 中找到,包含一个C++的示例。该示例在CMa...
  • Variables and the Cache

    Variables and the Cache Local Variables Cache Variables Environment variables The Cache Properties Variables and the Cache Local Variables We will cover variables first. A...
  • 10.1 安装项目

    10.1 安装项目 准备工作 具体实施 工作原理 安装到标准位置 目标属性和RPATH处理 安装指令 更多信息 10.1 安装项目 NOTE :此示例代码可以在 https://github.com/dev-cafe/cmake-cookbook/tree/v1.0/chapter-10/recipe-01 中找到,其中有一个C++示...
  • Exporting

    484 2021-02-12 《Modern CMake v3.19》
    Exporting Exporting The default behavior for exporting changed in CMake 3.15. Since changing files in a user’s home directory is considered “surprising” (and it is, which is w...
  • IDEs

    532 2021-02-12 《Modern CMake v3.19》
    Supporting IDEs Folders for targets Folders for files Running with an IDE Supporting IDEs In general, IDEs are already supported by a standard CMake project. There are just ...
  • FreeBSD

    Option A: Automatic FreeBSD builds Prerequisites Build procedure Option B: Custom FreeBSD builds Prerequisites Build Procedure 1. Get the source code 2. Get the dependencies ...
  • 15.7 进一步迁移的措施

    15.7 进一步迁移的措施 15.7 进一步迁移的措施 成功地移植到CMake之后,下一步应该本地化目标和变量的范围:考虑将选项、目标和变量移到更靠近使用和修改它们的地方。避免全局变量,因为它们将按CMake命令顺序进行创建,而这个顺序可能不明显,从而会导致CMake代码变得混乱。强制分离变量范围的一种方法是将较大的项目划分为CMake项目,这些项目...