书栈网 · BookStack 本次搜索耗时 0.023 秒,为您找到 1786 个相关结果.
  • 编译步骤

    BUILD Supported Environment Ubuntu/LinuxMint/WSL Prepare deps Compile brpc with config_brpc.sh Compile brpc with cmake Fedora/CentOS Prepare deps Compile brpc with config_brp...
  • How to Build ClickHouse on Linux

    How to Build ClickHouse for Development Install Git, CMake, Python and Ninja Install GCC 9 Install from a PPA Package Install from Sources Use GCC 9 for Builds Checkout ClickH...
  • How to Structure Your Project

    748 2021-02-12 《Modern CMake v3.19》
    How to structure your project How to structure your project The following information is biased. But in a good way, I think. I’m going to tell you how to structure the director...
  • Communicating with your code

    604 2021-02-12 《Modern CMake v3.19》
    Communication with your code Configure File Version.h.in CMake lines: Reading files Communication with your code Configure File CMake allows you to access CMake variables...
  • Boost

    Boost 库 Boost 库 CMake 提供 Boost 库的查找包,但其工作方式有些奇怪。FindBoost 中可获得完整的描述:这只是一个概述,并提供一个示例。务必查看页面上使用 CMake 的最低版本,然后再查看有哪些支持的选项。 首先,可以在搜索 Boost 之前设置的一组变量,自定义选定 Boost 库的行为。可设置的变量随着 CMa...
  • Installing

    487 2021-02-12 《Modern CMake v3.19》
    Installing Installing Install commands cause a file or target to be “installed” into the install tree when you make install . Your basic target install command looks like this:...
  • 3.9 检测外部库:Ⅰ. 使用pkg-config

    3.9 检测外部库:Ⅰ. 使用pkg-config 准备工作 具体实施 工作 3.9 检测外部库:Ⅰ. 使用pkg-config NOTE :此示例代码可以在 https://github.com/dev-cafe/cmake-cookbook/tree/v1.0/chapter-03/recipe-09 中找到,包含一个C的示例。该示例在C...
  • Linux

    Debian-based build directions Option A: Automatic Debian builds Prerequisites Build procedure Option B: Custom Debian builds Prerequisites Build procedure 1. Get the source cod...
  • 安装

    安装 安装 进行安装时,比如执行 make install ,安装命令会将文件或目标“安装”到安装树中。简单使用目标安装指令的方式: install ( TARGETS MyLib EXPORT MyLibTargets LIBRARY DESTINATION lib ARCHIVE D...
  • 2.1 检测操作系统

    2.1 检测操作系统 具体实施 工作原理 2.1 检测操作系统 NOTE :此示例代码可以在 https://github.com/dev-cafe/cmake-cookbook/tree/v1.0/chapter-02/recipe-01 中找到。该示例在CMake 3.5版(或更高版本)中是有效的,并且已经在GNU/Linux、macOS和...