使用conan包 - 使用配置文件

使用conan包 - 使用配置文件

  • 主目录 conan Using packages
  • Using profiles

本文是基于对conan官方文档Using profiles的翻译而来, 更详细的信息可以去查阅conan官方文档。

This section shows how to setup your project and manage dependencies (i.e., install existing packages) with Conan.
本节将介绍如何使用 Conan 设置项目和管理依赖关系(即安装现有软件包)。

主目录 conan Using packages

  • Installing dependencies
    • Requires
    • Generators
    • Options
  • Using profiles
  • Workflows
    • Single configuration
    • Multi configuration
  • Debugging packages

Using profiles

So far, we have used the default settings stored in ~/.conan/profiles/default and defined custom values for some of them as command line arguments.
到目前为止,我们使用了 ~/.conan/profiles/default 中存储的默认设置,并将其中一些设置的自定义值定义为命令行参数。

However, in large projects, configurations can get complex, settings can be very different, and we need an easy way to switch between different configurations with different settings, options etc. An easy way to switch between configurations is by using profiles.
然而,在大型项目中,配置可能会变得复杂,设置可能会大相径庭,我们需要一种简便的方法来在具有不同设置、选项等的不同配置之间进行切换。在不同配置间切换的简便方法就是使用配置文件。

A profile file contains a predefined set of settings, options, environment variables, and tool_requires specified in the following structure:
配置文件包含一组预定义的设置、选项、环境变量和工具要求,具体结构如下:

[settings]
setting=value[options]
MyLib:shared=True[env]
env_var=value[tool_requires]
tool1/0.1@user/channel
tool2/0.1@user/channel, tool3/0.1@user/channel
*: tool4/0.1@user/channel

Options allow the use of wildcards letting you apply the same option value to many packages. For example:
选项允许使用通配符,这样就可以将相同的选项值应用于多个软件包。例如

[options]
*:shared=True

Here is an example of a configuration that a profile file may contain:
下面是配置文件可能包含的配置示例:

clang_3.5

 [settings]os=Macosarch=x86_64compiler=clangcompiler.version=3.5compiler.libcxx=libstdc++11build_type=Release[env]CC=/usr/bin/clang-3.5CXX=/usr/bin/clang++-3.5

A profile file can be stored in the default profile folder, or anywhere else in your project file structure. To use the configuration specified in a profile file, pass in the file as a command line argument as shown in the example below:
配置文件可以存储在默认配置文件文件夹中,也可以存储在项目文件结构中的任何其他位置。要使用配置文件中指定的配置,请将该文件作为命令行参数传入,如下例所示:

$ conan create . demo/testing -pr=clang_3.5

Continuing with the example of Poco, instead of passing in a long list of command line arguments, we can define a handy profile that defines them all and pass that to the command line when installing the project dependencies.
继续以 Poco 为例,我们可以定义一个方便的配置文件来定义所有参数,并在安装项目依赖项时将其传递到命令行,而不是传递一长串命令行参数。

A profile to install dependencies as shared and in debug mode would look like this:
在调试模式下以共享方式安装依赖项的配置文件是这样的

debug_shared

 include(default)[settings]build_type=Debug[options]poco:shared=Truepoco:enable_apacheconnector=Falseopenssl:shared=True

To install dependencies using the profile file, we would use:
要使用配置文件安装依赖项,我们可以使用

$ conan install .. -pr=debug_shared

We could also create a new profile to use a different compiler version and store that in our project directory. For example:
我们还可以创建一个新的配置文件,使用不同的编译器版本,并将其存储在我们的项目目录中。例如

poco_clang_3.5

 include(clang_3.5)[options]poco:shared=Truepoco:enable_apacheconnector=Falseopenssl:shared=True

To install dependencies using this new profile, we would use:
要使用这个新配置文件安装依赖项,我们可以使用

$ conan install .. -pr=../poco_clang_3.5

You can specify multiple profiles in the command line. The applied configuration will be the composition of all the profiles applied in the order they are specified:
您可以在命令行中指定多个配置文件。应用的配置将是按指定顺序应用的所有配置文件的组合:

$ conan install .. -pr=../poco_clang_3.5 -pr=my_build_tool1 -pr=my_build_tool2

See also
Read more about Profiles for full reference. There is a Conan command, conan profile, that can help inspecting and managing profiles. Profiles can be also shared and installed with the conan config install command.
请阅读有关Profiles的更多信息,以获得全面参考。Conan 命令 conan profile 可以帮助检查和管理配置文件。还可以使用 conan config install 命令共享和安装配置文件。

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

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

相关文章

感染了后缀为.404mckay-V-XXXXXXXX勒索病毒如何应对?数据能够恢复吗?

导言: 近年来,网络安全威胁日益严峻,其中之一便是V系列的勒索病毒之.404mckay-V-XXXXXXXX勒索病毒和.ad3for-V-XXXXXXXX勒索病毒。本文将深入介绍这一威胁的特点、感染方式,并提供详尽的数据恢复方法和有效的预防措施&#xff0c…

背包9讲系列1-01背包问题

一、前言 最近打算出一个背包问题的专栏,详细介绍一下常见的几种不同类型的背包问题及其解题思路和方法,欢迎各位留言探讨。 二、什么是背包问题? 背包问题是动态规划中的一个分支,其目标是在给定的一组物品中选择一些物品放入…

flink消费kafka限制消费速率

flink版本1.14 别的版本类似 需要速率限制的情况 1.任务异常在停止的时间内大量数据挤压 2.新任务上线需要铺底数据,消费几天前的数据 在不增加内存和并行度的情况下,如果任务启动可能会造成oom,这时需要进行速率限制。 前提 漏桶算法(Leaky Bucket Algorithm): 原…

基于IDEA+SpringBoot+Mysql开发的在线考试系统

基于springboot的在线考试系统 项目介绍💁🏻 项目背景: 随着互联网的普及和技术的发展,传统的考试方式已经无法满足人们的需求。为了提高考试的效率和准确性,我们决定开发一个在线考试系统。该系统将提供登录、试卷列表…

UniApp 中的 u-input 属性讲解

在 UniApp 中,u-input 是一个常用的组件,用于接收用户的输入。它具有多种属性,用于控制输入框的样式和行为。下面我将为您讲解一些常用的 u-input 属性。 基本属性 value:表示输入框的初始值,可以使用 v-model 进行双…

CMake add_subdirectory

文章目录 简介基本语法 举例目录结构根目录CMakeLists子目录CMakeLists 简介 add_subdirectory 是 CMake 命令之一,用于在当前 CMakeLists.txt 文件中引入另一个子目录的 CMake 构建。这样,你可以在一个项目中组织多个子项目或子模块的构建。 基本语法…

lua完整学习笔记

lua注释 -- 单行注释 --[[ 多行注释 ]]-- lua数据结构 nil 无效值与Java的Null类似,但是在条件表示中是false boolean 布尔值,ture或者false number 双精度类型的浮点数 string 字…

【Android知识笔记】性能优化专题(四)

App 线程优化 线程调度原理 任意时刻,只有一个线程占用CPU,处于运行状态多线程并发:轮流获取CPU使用权JVM负责线程调度:按照特定机制分配CPU使用权线程调度模型 分时调度模型:轮流获取、均分CPU时间抢占式调度模型:优先级高的获取,JVM采用Android线程调度 nice值:Proc…

.NET6实现破解Modbus poll点表配置文件

📢欢迎点赞 :👍 收藏 ⭐留言 📝 如有错误敬请指正,赐人玫瑰,手留余香!📢本文作者:由webmote 原创📢作者格言:新的征程,我们面对的不仅仅是技术还有人心,人心不可测,海水不可量,唯有技术,才是深沉黑夜中的一座闪烁的灯塔 !序言 Modbus 协议是工控领域常见…

11. Mysql 子查询

Mysql 函数参考和扩展&#xff1a;Mysql 常用函数和基础查询、 Mysql 官网 Mysql 语法执行顺序如下&#xff0c;一定要清楚&#xff01;&#xff01;&#xff01;运算符相关&#xff0c;可前往 Mysql 基础语法和执行顺序扩展。 (8) select (9) distinct (11)<columns_name…

beanFactory和Factorybean有啥区别

BeanFactory和FactoryBean是Spring框架中的两个重要概念&#xff0c;它们有一些区别和不同的用途。 BeanFactory&#xff1a; BeanFactory是Spring框架的核心接口&#xff0c;它是一个工厂模式的实现。它负责创建、管理和获取应用程序中的各种对象&#xff08;也称为bean&#…

C语言线性表的实现(详解)

数据结构之线性表 ​ 线性表的基本概念&#xff1a;线性表是由0个或者多个数据元素的有限序列 ​ 特性是&#xff1a; ​ 1&#xff1a;数据元素之间都是有顺序的 ​ 2&#xff1a;数据元素的个数是有限的&#xff0c; ​ 3&#xff1a;数据元素的类型是相同的 ​ 性质是&…

mysql数据库基础知识,Mysql的索引和主键区别,数据库的事务的基本特性

文章目录 数据库基础知识Mysql的索引和主键的区别数据库的事务的基本特性 数据库基础知识 为什么要使用数据库 数据保存在内存 优点&#xff1a; 存取速度快 缺点&#xff1a; 数据不能永久保存 数据保存在文件 优点&#xff1a; 数据永久保存 缺点&#xff1a;1&#xf…

.net面试题5

1.请解释一下C#中的接口&#xff08;Interface&#xff09;。 接口是一种定义了一组方法、属性、事件或索引器的合同&#xff08;Contract&#xff09;&#xff0c;它只包含成员的声明而不包含实现。接口定义了一种行为规范&#xff0c;类可以实现一个或多个接口来满足其约定。…

Java中数据库查询方法MapListProcessor的应用

1.供应链系统的销售合同捉过了两个金额一样的&#xff0c;同一个项目 2.合同号也一样&#xff0c;oaid不一样&#xff0c;但是从OA前台只有一个 3.一个是建云的一个是泛微的 4.做下过滤&#xff0c;如果同一个合同编号&#xff0c;在泛微里面有的&#xff0c;建云的就不获取了 …

WPF面试题高级篇

WPF高级篇[8] 32. 解释SelectedItem、SelectedValue和SelectedValuePath之间的区别&#xff1f; 在WPF中&#xff0c;SelectedItem、SelectedValue和SelectedValuePath是用于处理选择控件&#xff08;如ComboBox、ListBox等&#xff09;中选定项的属性和路径。 比如当使用选…

一维数组传参的本质

一维数组传参的本质 数组我们之前学过了&#xff0c;之前也讲了&#xff0c;数组是可以传递给函数的&#xff0c;这个小节我们讨论一下数组传参的本质。 首先&#xff0c;我们从一个问题开始&#xff0c;我们之前都是在函数外部计算数组的元素个数&#xff0c;那我们可以把函…

threejs下监听mesh事件与监听3D对象的区别

先说结论 监听mesh时会导致同一mesh下同一个位置&#xff0c;如果重叠着多个3D对象&#xff0c;点击事件会被触发多次。而监听3D对象只有这个对象会触发这个事件一次。 技术架构 reactthreejsreact-three/dreireact-three/fiber 场景 有这样一段代码&#xff0c;一个网格对…

Git安装

简单粗暴&#xff0c;跟着步骤一步一步来 右键就会有了

Rust内存布局

题图忘了来自哪里.. 整型,浮点型,struct,vec!,enum 本文是对 Rust内存布局 的学习与记录 struct A { a: i64, b: u64,}struct B { a: i32, b: u64,}struct C { a: i64, b: u64, c: i32,}struct D { a: i32, b: u64, c: i32, d: u64,}fn main(…