CMake教程-第 7 步:添加系统自省功能

CMake教程-第 7 步:添加系统自省功能

  • 1 CMake教程介绍
  • 2 学习步骤
    • Step 1: A Basic Starting Point
    • Step 2: Adding a Library
    • Step 3: Adding Usage Requirements for a Library
    • Step 4: Adding Generator Expressions
    • Step 5: Installing and Testing
    • Step 6: Adding Support for a Testing Dashboard
    • Step 7: Adding System Introspection
    • Step 8: Adding a Custom Command and Generated File
    • Step 9: Packaging an Installer
    • Step 10: Selecting Static or Shared Libraries
    • Step 11: Adding Export Configuration
    • Step 12: Packaging Debug and Release
  • 3 Step 7: Adding System Introspection
    • 3.1 Exercise 1 - Assessing Dependency Availability
      • 3.1.1 目标
      • 3.1.2 Helpful Resources(有用的资源)
      • 3.1.3 Files to Edit(需编辑的文件)
      • 3.1.4 Getting Started(入门指南)
      • 3.1.5 Build and Run(构建并运行)
      • 3.1.6 解决方案
      • 3.1.7 MathFunctions/CMakeLists.txt
      • 3.1.8 MathFunctions/mysqrt.cxx
      • 3.1.9 编译和运行结果

该文档是基于CMake的官方教程翻译而来,并稍微添加了自己的理解:

cmake的官方网站为:CMake Tutorial

1 CMake教程介绍

The CMake tutorial provides a step-by-step guide that covers common build system issues that CMake helps address. Seeing how various topics all work together in an example project can be very helpful.
CMake 教程提供了一个循序渐进的指南,涵盖了 CMake 可帮助解决的常见构建系统问题。在一个示例项目中了解各个主题是如何协同工作的,会非常有帮助。

2 学习步骤

The tutorial source code examples are available in this archive. Each step has its own subdirectory containing code that may be used as a starting point. The tutorial examples are progressive so that each step provides the complete solution for the previous step.
本文档中提供了教程源代码示例。每个步骤都有自己的子目录,其中包含可用作起点的代码。教程示例是循序渐进的,因此每一步都提供了前一步的完整解决方案。

Step 1: A Basic Starting Point

  • Exercise 1 - Building a Basic Project
  • Exercise 2 - Specifying the C++ Standard
  • Exercise 3 - Adding a Version Number and Configured Header File

Step 2: Adding a Library

  • Exercise 1 - Creating a Library
  • Exercise 2 - Adding an Option

Step 3: Adding Usage Requirements for a Library

  • Exercise 1 - Adding Usage Requirements for a Library
  • Exercise 2 - Setting the C++ Standard with Interface Libraries

Step 4: Adding Generator Expressions

  • Exercise 1 - Adding Compiler Warning Flags with Generator Expressions

Step 5: Installing and Testing

  • Exercise 1 - Install Rules
  • Exercise 2 - Testing Support

Step 6: Adding Support for a Testing Dashboard

  • Exercise 1 - Send Results to a Testing Dashboard

Step 7: Adding System Introspection

  • Exercise 1 - Assessing Dependency Availability

Step 8: Adding a Custom Command and Generated File

Step 9: Packaging an Installer

Step 10: Selecting Static or Shared Libraries

Step 11: Adding Export Configuration

Step 12: Packaging Debug and Release

3 Step 7: Adding System Introspection

Let us consider adding some code to our project that depends on features the target platform may not have. For this example, we will add some code that depends on whether or not the target platform has the log and exp functions. Of course almost every platform has these functions but for this tutorial assume that they are not common.
让我们考虑在项目中添加一些依赖于目标平台可能不具备的功能的代码。在本例中,我们将添加一些取决于目标平台是否具有 log 和 exp 函数的代码。当然,几乎每个平台都有这些函数,但本教程假设它们并不常见。

3.1 Exercise 1 - Assessing Dependency Availability

3.1.1 目标

Change implementation based on available system dependencies.
根据现有的系统依赖关系改变实现方式。

3.1.2 Helpful Resources(有用的资源)

  • CheckCXXSourceCompiles
  • target_compile_definitions()

3.1.3 Files to Edit(需编辑的文件)

  • MathFunctions/CMakeLists.txt
  • MathFunctions/mysqrt.cxx

3.1.4 Getting Started(入门指南)

The starting source code is provided in the Step7 directory. In this exercise, complete TODO 1 through TODO 5.
Step7 目录中提供了起始源代码。在本练习中,完成 TODO 1 到 TODO 5。

Start by editing MathFunctions/CMakeLists.txt. Include the CheckCXXSourceCompiles module. Then, use check_cxx_source_compiles to determine whether log and exp are available from cmath. If they are available, use target_compile_definitions() to specify HAVE_LOG and HAVE_EXP as compile definitions.
首先编辑 MathFunctions/CMakeLists.txt。加入 CheckCXXSourceCompiles 模块。然后,使用 check_cxx_source_compiles 确定 cmath 是否提供 logexp。如果可用,则使用 target_compile_definitions() 将 HAVE_LOGHAVE_EXP 指定为编译定义。

In the MathFunctions/mysqrt.cxx, include cmath. Then, if the system has log and exp, use them to compute the square root.
MathFunctions/mysqrt.cxx 中,加入 cmath。然后,如果系统有 logexp,则使用它们计算平方根。

3.1.5 Build and Run(构建并运行)

Make a new directory called Step7_build. Run the cmake executable or the cmake-gui to configure the project and then build it with your chosen build tool and run the Tutorial executable.
新建一个名为 Step7_build 的目录。运行 cmake 可执行文件或 cmake-gui 配置项目,然后使用所选的构建工具构建项目,并运行 Tutorial 可执行文件。

This can look like the following:
如下所示:

mkdir Step7_build
cd Step7_build
cmake ../Step7
cmake --build .

Which function gives better results now, sqrt or mysqrt?
sqrt 和 mysqrt 哪个函数的结果更好?

3.1.6 解决方案

In this exercise we will use functions from the CheckCXXSourceCompiles module so first we must include it in MathFunctions/CMakeLists.txt.
在本练习中,我们将使用 CheckCXXSourceCompiles 模块中的函数,因此首先必须将其包含在 MathFunctions/CMakeLists.txt 中。

TODO 1: Click to show/hide answer

TODO 1: MathFunctions/CMakeLists.txtinclude(CheckCXXSourceCompiles)

Then test for the availability of log and exp using check_cxx_compiles_source. This function lets us try compiling simple code with the required dependency prior to the true source code compilation. The resulting variables HAVE_LOG and HAVE_EXP represent whether those dependencies are available.
然后使用 check_cxx_compiles_source 测试log志和 exp 是否可用。通过该函数,我们可以在编译真正的源代码之前,尝试使用所需的依赖关系编译简单的代码。结果变量 HAVE_LOGHAVE_EXP 表示这些依赖关系是否可用。

TODO 2: Click to show/hide answer

TODO 2: MathFunctions/CMakeLists.txtcheck_cxx_source_compiles("#include <cmath>int main() {std::log(1.0);return 0;}" HAVE_LOG)check_cxx_source_compiles("#include <cmath>int main() {std::exp(1.0);return 0;}" HAVE_EXP)

Next, we need to pass these CMake variables to our source code. This way, our source code can tell what resources are available. If both log and exp are available, use target_compile_definitions() to specify HAVE_LOG and HAVE_EXP as PRIVATE compile definitions.
接下来,我们需要将这些 CMake 变量传递给我们的源代码。这样,我们的源代码就能知道哪些资源可用。如果 logexp 都可用,请使用 target_compile_definitions() 将 HAVE_LOGHAVE_EXP 指定为私有编译定义。

TODO 3: Click to show/hide answer

TODO 3: MathFunctions/CMakeLists.txtif(HAVE_LOG AND HAVE_EXP)target_compile_definitions(SqrtLibraryPRIVATE "HAVE_LOG" "HAVE_EXP")endif()

Since we may be using log and exp, we need to modify mysqrt.cxx to include cmath.
由于我们可能会使用 logexp,因此需要修改 mysqrt.cxx 以包含 cmath

TODO 4: Click to show/hide answer

TODO 4: MathFunctions/mysqrt.cxx
#include <cmath>
If log and exp are available on the system, then use them to compute the square root in the mysqrt function. The mysqrt function in MathFunctions/mysqrt.cxx will look as follows:TODO 5: Click to show/hide answer
TODO 5: MathFunctions/mysqrt.cxx
#if defined(HAVE_LOG) && defined(HAVE_EXP)double result = std::exp(std::log(x) * 0.5);std::cout << "Computing sqrt of " << x << " to be " << result<< " using log and exp" << std::endl;
#elsedouble result = x;// do ten iterationsfor (int i = 0; i < 10; ++i) {if (result <= 0) {result = 0.1;}double delta = x - (result * result);result = result + 0.5 * delta / result;std::cout << "Computing sqrt of " << x << " to be " << result << std::endl;}
#endif

3.1.7 MathFunctions/CMakeLists.txt

add_library(MathFunctions MathFunctions.cxx)# state that anybody linking to us needs to include the current source dir
# to find MathFunctions.h, while we don't.
target_include_directories(MathFunctionsINTERFACE ${CMAKE_CURRENT_SOURCE_DIR})# should we use our own math functions
option(USE_MYMATH "Use tutorial provided math implementation" ON)
if (USE_MYMATH)target_compile_definitions(MathFunctions PRIVATE "USE_MYMATH")# library that just does sqrtadd_library(SqrtLibrary STATICmysqrt.cxx)target_link_libraries(SqrtLibrary PUBLIC tutorial_compiler_flags)# TODO 1: Include CheckCXXSourceCompilesinclude(CheckCXXSourceCompiles)# TODO 2: Use check_cxx_source_compiles with simple C++ code to verify# availability of:# * std::log# * std::exp# Store the results in HAVE_LOG and HAVE_EXP respectively.check_cxx_source_compiles("#include <cmath>int main() {std::log(1.0);return 0;}" HAVE_LOG)check_cxx_source_compiles("#include <cmath>int main() {std::exp(1.0);return 0;}" HAVE_EXP)# Hint: Sample C++ code which uses log:# #include <cmath># int main() {#   std::log(1.0);#   return 0;# }# TODO 3: Conditionally on HAVE_LOG and HAVE_EXP, add private compile# definitions "HAVE_LOG" and "HAVE_EXP" to the SqrtLibrary target.# Hint: Use target_compile_definitions()if(HAVE_LOG AND HAVE_EXP)target_compile_definitions(SqrtLibraryPRIVATE "HAVE_LOG" "HAVE_EXP")endif()target_link_libraries(MathFunctions PRIVATE SqrtLibrary)
endif()# link our compiler flags interface library
target_link_libraries(MathFunctions PUBLIC tutorial_compiler_flags)# install libs
set(installable_libs MathFunctions tutorial_compiler_flags)
if(TARGET SqrtLibrary)list(APPEND installable_libs SqrtLibrary)
endif()
install(TARGETS ${installable_libs} DESTINATION lib)
# install include headers
install(FILES MathFunctions.h DESTINATION include)

3.1.8 MathFunctions/mysqrt.cxx

#include "mysqrt.h"#include <iostream>
#include <cmath>namespace mathfunctions {
namespace detail {
// a hack square root calculation using simple operations
double mysqrt(double x)
{if (x <= 0) {return 0;}// TODO 5: If both HAVE_LOG and HAVE_EXP are defined,  use the following:double result = std::exp(std::log(x) * 0.5);std::cout << "Computing sqrt of " << x << " to be " << result<< " using log and exp" << std::endl;// else, use the existing logic.
#if defined(HAVE_LOG) && defined(HAVE_EXP)double result = std::exp(std::log(x) * 0.5);std::cout << "Computing sqrt of " << x << " to be " << result<< " using log and exp" << std::endl;
#elsedouble result = x;// do ten iterationsfor (int i = 0; i < 10; ++i) {if (result <= 0) {result = 0.1;}double delta = x - (result * result);result = result + 0.5 * delta / result;std::cout << "Computing sqrt of " << x << " to be " << result << std::endl;}
#endifreturn result;
}
}
}

3.1.9 编译和运行结果

test@test:~/sda3/work/cmake/Step7_build$ cmake ../Step7
-- Configuring done
-- Generating done
-- Build files have been written to: /home/test/sda3/work/cmake/Step7_build
test@test:~/sda3/work/cmake/Step7_build$ cmake --build .
Consolidate compiler generated dependencies of target SqrtLibrary
[ 16%] Building CXX object MathFunctions/CMakeFiles/SqrtLibrary.dir/mysqrt.cxx.o
[ 33%] Linking CXX static library libSqrtLibrary.a
[ 33%] Built target SqrtLibrary
Consolidate compiler generated dependencies of target MathFunctions
[ 66%] Built target MathFunctions
Consolidate compiler generated dependencies of target Tutorial
[ 83%] Linking CXX executable Tutorial
[100%] Built target Tutorial
test@test:~/sda3/work/cmake/Step7_build$ 
test@test:~/sda3/work/cmake/Step7_build$ 
test@test:~/sda3/work/cmake/Step7_build$ ./T
Testing/  Tutorial  
test@test:~/sda3/work/cmake/Step7_build$ ./T
Testing/  Tutorial  
test@test:~/sda3/work/cmake/Step7_build$ ./T
Testing/  Tutorial  
test@test:~/sda3/work/cmake/Step7_build$ ./Tutorial 
./Tutorial Version 1.0
Usage: ./Tutorial number
test@test:~/sda3/work/cmake/Step7_build$ ./Tutorial 10
Computing sqrt of 10 to be 3.16228 using log and exp
The square root of 10 is 3.16228
test@test:~/sda3/work/cmake/Step7_build$ ./Tutorial 100
Computing sqrt of 100 to be 10 using log and exp
The square root of 100 is 10
test@test:~/sda3/work/cmake/Step7_build$ ./Tutorial 10000
Computing sqrt of 10000 to be 100 using log and exp
The square root of 10000 is 100
test@test:~/sda3/work/cmake/Step7_build$

本文来自互联网用户投稿,该文观点仅代表作者本人,不代表本站立场。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如若转载,请注明出处:http://www.mzph.cn/news/109072.shtml

如若内容造成侵权/违法违规/事实不符,请联系多彩编程网进行投诉反馈email:809451989@qq.com,一经查实,立即删除!

相关文章

基于springboot实现汉服文化分享平台项目【项目源码+论文说明】

摘要 本论文主要论述了如何使用JAVA语言开发一个汉服文化平台网站 &#xff0c;本系统将严格按照软件开发流程进行各个阶段的工作&#xff0c;采用B/S架构&#xff0c;面向对象编程思想进行项目开发。在引言中&#xff0c;作者将论述汉服文化平台网站的当前背景以及系统开发的…

【Linux常用命令12】搜索命令及特殊字符的使用

which&#xff1a;查看可执行文件的位置 which 命令whereis&#xff1a;查看文件的位置&#xff0c;只能用于程序名的搜索 whereis [选项] 命令 -b 定位可执行文件。 -m 定位帮助文件。 -s 定位源代码文件。 -u 搜索默认路径下除可执行文件、源代码文件、帮助文件以外…

Python 中的省略号对象

作为一名经验丰富的 Python 开发人员&#xff0c;您可能遇到过 Python 中的三个点…省略号对象。 如果您尝试在 Python 解释器中打印此内容&#xff0c;它将显示一个省略号。 本篇文章将介绍 Python 中省略号对象的使用。 使用省略号作为未编写代码的占位符 省略号对象可以以…

【vue2高德地图api】02-npm引入插件,在页面中展示效果

系列文章目录 提示&#xff1a;写完文章后&#xff0c;目录可以自动生成&#xff0c;如何生成可参考右边的帮助文档 文章目录 系列文章目录前言一、安装高德地图二、在main.js中配置需要配置2个key值以及1个密钥 三、在页面中使用3.1 新建路由3.2新建vue页面3.2-1 index.vue3.2…

基于RuoYi-Flowable-Plus的若依ruoyi-nbcio支持自定义业务表单流程的集成方法与步骤(一)

更多ruoyi-nbcio功能请看演示系统 gitee源代码地址 前后端代码&#xff1a; https://gitee.com/nbacheng/ruoyi-nbcio 演示地址&#xff1a;RuoYi-Nbcio后台管理系统 由于大家最自定义业务表单的整个集成方法还不熟悉&#xff0c;下面大概介绍一下这个流程与方法。 1、首先…

2.2 如何使用FlinkSQL读取写入到文件系统(HDFS\Local\Hive)

目录 1、文件系统 SQL 连接器 2、如何指定文件系统类型 3、如何指定文件格式 4、读取文件系统 4.1 开启 目录监控 4.2 可用的 Metadata 5、写出文件系统 5.1 创建分区表 5.2 滚动策略、文件合并、分区提交 5.3 指定 Sink Parallelism 6、示例_通过FlinkSQL读取kafk…

【MySQL】索引介绍、索引的数据结构

&#x1f40c;个人主页&#xff1a; &#x1f40c; 叶落闲庭 &#x1f4a8;我的专栏&#xff1a;&#x1f4a8; c语言 数据结构 javaEE 操作系统 Redis 石可破也&#xff0c;而不可夺坚&#xff1b;丹可磨也&#xff0c;而不可夺赤。 索引 一、索引概述二、索引结构2.1 BTree2.…

【论文阅读】 Cola-Dif; An explainable task-specific synthesis network

文章目录 CoLa-Diff: Conditional Latent Diffusion Model for Multi-modal MRI SynthesisAn Explainable Deep Framework: Towards Task-Specific Fusion for Multi-to-One MRI Synthesis CoLa-Diff: Conditional Latent Diffusion Model for Multi-modal MRI Synthesis 论文…

使用vscode + vite + vue3+ element3 搭建vue3脚手架

技术栈 开发工具&#xff1a;VSCode 代码管理&#xff1a;Git 前端框架&#xff1a;Vue3 构建工具&#xff1a;Vite 路由&#xff1a;vue-router 状态管理&#xff1a;vuex AJAX&#xff1a;axios UI库&#xff1a;element-ui 3 数据模拟&#xff1a;mockjs css预处理&#xf…

【c++】跟werbtc学容器:unordered_set

1 std::unordered_set 元素无特定顺序的hash容器 D:\XTRANS\m98_rtc\ndrtc-webrtc\src\third_party\protobuf\src\google\protobuf\descriptor.cc#define HASH_MAP std::unordered_map #define HASH_SET std::unordered_set #define HASH_FXN

机器学习方法之k近邻方法的综述

机器学习方法之k近邻方法的综述 前言k近邻方法的相关综述最近邻方法k近邻方法加权k近邻方法kknn程序包的介绍前言 本篇博客的目的是想用最简单的话讲清楚k近邻方法,欢迎大家在评论区提出你们的看法,你们的批评是我前进的动力。 k近邻方法的相关综述 在统计识别领域k近邻方法…

手机爬虫用Appium详细教程:利用Python控制移动App进行自动化抓取数据

Appium是一个强大的跨平台工具&#xff0c;它可以让你使用Python来控制移动App进行自动化操作&#xff0c;从而实现数据的抓取和处理。今天&#xff0c;我将与大家分享一份关于使用Appium进行手机爬虫的详细教程&#xff0c;让我们一起来探索Appium的功能和操作&#xff0c;为手…

SQL实现自定义排序

业务事实上&#xff0c;经常会遇到排序问题&#xff0c;对数值类型字段排序不会有很大争议&#xff0c;但是有时希望对字符型字段按要求进行排序。本文记录自定义排序的几种方法。 使用case when关键字进行限定 本方法思路是将希望排序小的字符取值为较小的数字。注意end后面…

Three.js图案溶解shader

上图提供两种方式溶解显示 上面一排是根据现实的图案红色通道也就是r值进行溶解 下面一排提供额外的溶解纹理 可以通过简单更改呈现多种溶解图案 代码仓库 gitee b站账号&#xff1a;https://space.bilibili.com/374230437 interface IMapPath {map: string;dissolve?: string…

【C/C++】静态库和动态库命名规范及最佳实践

在软件开发中&#xff0c;静态库和动态库是常用的代码复用形式。为了保持良好的代码组织和可维护性&#xff0c;以及遵循统一的命名规范是非常重要的。本文将介绍静态库和动态库的命名规范&#xff0c;并提供一些最佳实践&#xff0c;以帮助开发人员在项目中正确命名库文件。 …

3-k8s-镜像仓库harbor搭建

文章目录 一、概念二、安装harbor三、使用harbor仓库 一、概念 官方概念&#xff1a;Harbor是一个用于存储和分发Docker镜像的企业级Registry服务器。 我们平时拉去镜像都是从线上仓库拉去&#xff0c;但是企业内部的镜像一般都不会随意传到网上&#xff0c;而是保存在自己公…

flutter开发实战-防抖Debounce与节流Throttler实现

flutter开发实战-防抖Debounce与节流Throttler实现 在开发中&#xff0c;经常遇到某些按钮或者界面操作需要做防抖或者节流操作。这里记录一下实现。 一、防抖Debounce与节流Throttler 防抖Debounce 当有可能在短时间内对一个方法进行多次调用时&#xff0c;需要防抖&#…

GO 工程下载依赖操作流程(go mod)

1. 写一个main.go文件 package main import ("fmt""net/http""github.com/ClickHouse/clickhouse-go" ) func main() {fmt.Println("服务启动......")http.HandleFunc("/hello", func(w http.ResponseWriter, r *http.Requ…

基于springboot实现酒店管理系统平台项目【项目源码+论文说明】计算机毕业设计

摘要 21世纪的今天&#xff0c;随着社会的不断发展与进步&#xff0c;人们对于信息科学化的认识&#xff0c;已由低层次向高层次发展&#xff0c;由原来的感性认识向理性认识提高&#xff0c;管理工作的重要性已逐渐被人们所认识&#xff0c;科学化的管理&#xff0c;使信息存…

如何优化模型渲染性能

1、提高模型渲染性能的好处 优化模型渲染性能有以下几个好处&#xff1a; 提高用户体验&#xff1a;良好的模型渲染性能可以使图形应用程序更加流畅和响应快速。当模型以较高的帧率渲染时&#xff0c;用户可以获得更流畅、更真实的视觉效果&#xff0c;提升整体的用户体验。 …