1 Star 1 Fork 2

情浅 / conan使用demo和说明文档

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
克隆/下载
贡献代码
同步代码
取消
提示: 由于 Git 不支持空文件夾,创建文件夹后会生成空的 .keep 文件
conan_demo @ ba99faa
Loading...
README
MulanPSL-2.0

本篇文章的代码都在这里备份

@[toc]

一、conan介绍

  1. 跨平台
  2. c、c++包管理工具
  3. python写的
  4. 开源
  5. 类似java的maven,python的pip

1.1 简单介绍

  • Conan是C和C ++语言的依赖项和程序包管理器。它是免费和开源的,并且可以在所有平台上使用:Windows,Linux,OSX,FreeBSD,Solaris等,并且可以用于开发所有目标,包括嵌入式,移动(iOS,Android)和裸机。它还与所有构建系统集成,例如CMake,Visual Studio(MSBuild),Makefile,SCons等,包括专有系统。

  • 它是专门为加速C和C ++项目的开发和持续集成而设计和优化的。借助完全的二进制管理,它可以在所有平台上使用完全相同的过程为包的任意数量的不同版本创建和重用任意数量的不同二进制文件(用于不同的配置,如体系结构,编译器版本等)。由于它是分散式的,因此很容易运行您自己的服务器以私下托管您自己的软件包和二进制文件,而无需共享它们。建议使用免费的JFrog Artifactory社区版(CE),由Conan服务器在您的控制下私下托管您自己的程序包。


1.2 conna特点

  • Conan成熟稳定,对向前兼容性(不间断政策)有坚定的承诺,并有一个完整的团队全职致力于其改进和支持。它由一个伟大的社区支持和使用,从ConanCenter中的开源贡献者和包创建者到数千个使用它的团队和公司。

  • Conan是具有客户端-服务器体系结构的分散式软件包管理器。这意味着客户端可以从不同的服务器获取软件包,也可以将软件包上载到不同的服务器(“远程”),类似于“ git”推拉模型到/从git远程服务器。

  • 从较高的角度来看,服务器只是程序包存储。他们不构建也不创建包。这些包是由客户端创建的,并且如果二进制文件是从源代码构建的,则该编译也将由客户端应用程序完成。 在这里插入图片描述 上图中的不同应用程序是:

  • Conan客户端:这是一个控制台/终端命令行应用程序,其中包含用于程序包创建和使用的繁琐逻辑。Conan客户端具有用于程序包存储的本地缓存,因此它使您可以完全创建和脱机测试程序包。您也可以脱机工作,只要不需要远程服务器上的新软件包即可。

  • 推荐使用JFrog Artifactory Community Edition(CE),由Conan服务器在您的控制下私下托管您自己的程序包。它是JFrog Artifactory for - Conan软件包的免费社区版本,包括WebUI,多个身份验证协议(LDAP),用于创建高级拓扑的虚拟和远程存储库,Rest API和用于存储任何工件的通用存储库。

  • conan_server是与Conan客户端一起分发的小型服务器。这是一个简单的开源实现,它提供基本功能,但不提供WebUI或其他高级功能。 ConanCenter是一个中央公共存储库,社区在其中为流行的开源库(例如Boost,Zlib,OpenSSL,Poco等)提供软件包。


1.3 跨平台

Conan可在Windows,Linux(Ubuntu,Debian,RedHat,ArchLinux,Raspbian),OSX,FreeBSD和SunOS上运行,并且由于具有可移植性,因此它可在可运行Python的任何其他平台上运行。它可以针对任何现有平台,从裸机到桌面,移动,嵌入式,服务器,跨架构。

Conan也可以与任何构建系统一起使用。与最流行的集成有内置的集成,例如CMake,Visual Studio(MSBuild),自动工具和Makefile,SCons等。但不需要使用任何集成。甚至没有必要所有软件包都使用相同的构建系统,每个软件包都可以使用自己的构建系统,并依赖于使用不同构建系统的其他软件包。还可以与任何构建系统(包括专有系统)集成。

同样,柯南可以管理任何编译器和任何版本。有一些最流行的默认定义:gcc,cl.exe,clang,apple-clang,intel,具有不同的版本配置,运行时,C ++标准库等。该模型还可以扩展到任何自定义配置。

二、conan全平台安装

无论是在什么平台,因为conan是python开发的。都可以使用python的包管理工具pip下载

pip install conan

安装后:

  • 命令
conan --version
  • 结果 在这里插入图片描述

就可以看到安装的版本。

更新conan:

 pip install conan --upgrade  

三、使用conan教程

本篇文章的代码都在这里备份

让我们从一个示例开始:我们将创建一个MD5哈希计算器应用程序,该应用程序使用最流行的C ++库之一:Poco。

在这种情况下,我们将使用CMake作为构建系统,但请记住,柯南可与任何构建系统一起使用,而不仅限于使用CMake。

  • 代码段
 #include "Poco/MD5Engine.h"
 #include "Poco/DigestStream.h"

 #include <iostream>

 int main(int argc, char** argv){
     Poco::MD5Engine md5;
     Poco::DigestOutputStream ds(md5);
     ds << "abcdefghijklmnopqrstuvwxyz";
     ds.close();
     std::cout << Poco::DigestEngine::digestToHex(md5.digest()) << std::endl;
     return 0;
 }
 conan search poco --remote=conan-center

我们可以看到搜索结果截图:

在这里插入图片描述

我们可以看到有很多版本的poco库版本

我对版本1.9.4比较感兴趣,所以我准备查看一下关于这个版本的信息。我输入以下指令,得到反馈。

  • 命令
     conan inspect poco/1.9.4
  • 结果截图 在这里插入图片描述 看了描述后我决定就用它了,然后我在我的项目里面建立一个名为:conanfile.txt的文件。 在里面写上了
  • conanfile.txt
      [requires]
      poco/1.9.4
     
      [generators]
      cmake
     

接下来:我们将安装所需的依赖项并生成构建系统的信息

首先我们创建一个文件夹,里面放上我们刚刚写的依赖于库文件的.cpp文件,命名为;md5.cpp ,然后在创建一个名为build的文件夹,一会用来构建工程。现在我们的目录结构是这样的: 在这里插入图片描述

在正式开始下载库文件并编译的前,我们先告诉conan使用c++11的标准来编译我们需要的库文件。 执行下面指令:

conan profile update settings.compiler.libcxx=libstdc++11 default

现在开始使用conan编译我们的库文件,首先进入build文件夹然后执行指令:

conan install .. 

如果你是初次安装就会看到下面这张截图: 在这里插入图片描述

最后安装结束。

Conan安装了我们的Poco依赖关系,还安装了传递依赖关系:OpenSSL,zlib,sqlite等。它还为我们的构建系统生成了conanbuildinfo.cmake文件。

在这里插入图片描述 现在库文件已经安装好了,我们来写一个cmake执行我们的.cpp文件,脚本如下:

- CMakeLists.txt


 cmake_minimum_required(VERSION 2.8.12)
 project(MD5Encrypter)

 add_definitions("-std=c++11")

 include(${CMAKE_BINARY_DIR}/conanbuildinfo.cmake)
 conan_basic_setup()

 add_executable(md5 md5.cpp)
 target_link_libraries(md5 ${CONAN_LIBS})

现在我们的目录结构是: 在这里插入图片描述

(CMakeLists.txt 图中文件名写错了!!!!)

现在我们可以进入build文件夹开始执行了

  • windows的执行命令
(win)
$ cmake .. -G "Visual Studio 16"
$ cmake --build . --config Release
  • linux的执行命令
(linux, mac)
$ cmake .. -G "Unix Makefiles" -DCMAKE_BUILD_TYPE=Release
$ cmake --build .
...
[100%] Built target md5
$ ./bin/md5
c3fcd3d76192e4007dfb496cca67e13b

这里我是用的linux,可以看到我的执行结果如下: 在这里插入图片描述 在这里插入图片描述

我们看一眼最终的生成文件夹: 在这里插入图片描述

我们需要的东西就在bin文件夹里面,进去执行一下:


root@iZ2ze99clzuka1844h9qy0Z:~/conanTest/build# cd bin
root@iZ2ze99clzuka1844h9qy0Z:~/conanTest/build/bin# ls
md5
root@iZ2ze99clzuka1844h9qy0Z:~/conanTest/build/bin# ./md5
c3fcd3d76192e4007dfb496cca67e13b
root@iZ2ze99clzuka1844h9qy0Z:~/conanTest/build/bin# ./md5
c3fcd3d76192e4007dfb496cca67e13b
root@iZ2ze99clzuka1844h9qy0Z:~/conanTest/build/bin# ./md5
c3fcd3d76192e4007dfb496cca67e13b
root@iZ2ze99clzuka1844h9qy0Z:~/conanTest/build/bin# ./md5
c3fcd3d76192e4007dfb496cca67e13b
root@iZ2ze99clzuka1844h9qy0Z:~/conanTest/build/bin# ./md5
c3fcd3d76192e4007dfb496cca67e13b
root@iZ2ze99clzuka1844h9qy0Z:~/conanTest/build/bin# ./md5
c3fcd3d76192e4007dfb496cca67e13b

可以看到已经执行成功啦。

四、快速总结conan

  1. conna是个 c++/c 的包管理工具,基于python开发,开源。
  2. conan需要编写conanfile.txt来说明依赖。
  3. conan search -r=conan 指令可以在远程仓库搜索包
  4. conan install 指令来根据conanfile.txt安装库文件
  5. 最终生成文件:conanbuildinfo.txt
  6. 编写cmake后编译工程
  7. 完成使用
  • 文中所用命令
# 安装
pip install conan

# 版本
conan --version

# 升级
pip install conan --upgrade  
 
# 搜索包
conan search poco --remote=conan-center
conan search libpng -r=conan-center
  
# 查看  
conan inspect poco/1.9.4
  
# 配置文件名  
conanfile.txt
  
# 设置默认编译版本 
conan profile update settings.compiler.libcxx=libstdc++11 default

# 安装库
conan install .. 


# cmake使用例子
cmake_minimum_required(VERSION 2.8.12)
project(MD5Encrypter)

add_definitions("-std=c++11")

include(${CMAKE_BINARY_DIR}/conanbuildinfo.cmake)
conan_basic_setup()

add_executable(md5 md5.cpp)
target_link_libraries(md5 ${CONAN_LIBS})
 
 
 
# linux构建命令
$ cmake .. -G "Unix Makefiles" -DCMAKE_BUILD_TYPE=Release
$ cmake --build .
木兰宽松许可证, 第2版 木兰宽松许可证, 第2版 2020年1月 http://license.coscl.org.cn/MulanPSL2 您对“软件”的复制、使用、修改及分发受木兰宽松许可证,第2版(“本许可证”)的如下条款的约束: 0. 定义 “软件”是指由“贡献”构成的许可在“本许可证”下的程序和相关文档的集合。 “贡献”是指由任一“贡献者”许可在“本许可证”下的受版权法保护的作品。 “贡献者”是指将受版权法保护的作品许可在“本许可证”下的自然人或“法人实体”。 “法人实体”是指提交贡献的机构及其“关联实体”。 “关联实体”是指,对“本许可证”下的行为方而言,控制、受控制或与其共同受控制的机构,此处的控制是指有受控方或共同受控方至少50%直接或间接的投票权、资金或其他有价证券。 1. 授予版权许可 每个“贡献者”根据“本许可证”授予您永久性的、全球性的、免费的、非独占的、不可撤销的版权许可,您可以复制、使用、修改、分发其“贡献”,不论修改与否。 2. 授予专利许可 每个“贡献者”根据“本许可证”授予您永久性的、全球性的、免费的、非独占的、不可撤销的(根据本条规定撤销除外)专利许可,供您制造、委托制造、使用、许诺销售、销售、进口其“贡献”或以其他方式转移其“贡献”。前述专利许可仅限于“贡献者”现在或将来拥有或控制的其“贡献”本身或其“贡献”与许可“贡献”时的“软件”结合而将必然会侵犯的专利权利要求,不包括对“贡献”的修改或包含“贡献”的其他结合。如果您或您的“关联实体”直接或间接地,就“软件”或其中的“贡献”对任何人发起专利侵权诉讼(包括反诉或交叉诉讼)或其他专利维权行动,指控其侵犯专利权,则“本许可证”授予您对“软件”的专利许可自您提起诉讼或发起维权行动之日终止。 3. 无商标许可 “本许可证”不提供对“贡献者”的商品名称、商标、服务标志或产品名称的商标许可,但您为满足第4条规定的声明义务而必须使用除外。 4. 分发限制 您可以在任何媒介中将“软件”以源程序形式或可执行形式重新分发,不论修改与否,但您必须向接收者提供“本许可证”的副本,并保留“软件”中的版权、商标、专利及免责声明。 5. 免责声明与责任限制 “软件”及其中的“贡献”在提供时不带任何明示或默示的担保。在任何情况下,“贡献者”或版权所有者不对任何人因使用“软件”或其中的“贡献”而引发的任何直接或间接损失承担责任,不论因何种原因导致或者基于何种法律理论,即使其曾被建议有此种损失的可能性。 6. 语言 “本许可证”以中英文双语表述,中英文版本具有同等法律效力。如果中英文版本存在任何冲突不一致,以中文版为准。 条款结束 如何将木兰宽松许可证,第2版,应用到您的软件 如果您希望将木兰宽松许可证,第2版,应用到您的新软件,为了方便接收者查阅,建议您完成如下三步: 1, 请您补充如下声明中的空白,包括软件名、软件的首次发表年份以及您作为版权人的名字; 2, 请您在软件包的一级目录下创建以“LICENSE”为名的文件,将整个许可证文本放入该文件中; 3, 请将如下声明文本放入每个源文件的头部注释中。 Copyright (c) [Year] [name of copyright holder] [Software Name] is licensed under Mulan PSL v2. You can use this software according to the terms and conditions of the Mulan PSL v2. You may obtain a copy of Mulan PSL v2 at: http://license.coscl.org.cn/MulanPSL2 THIS SOFTWARE IS PROVIDED ON AN "AS IS" BASIS, WITHOUT WARRANTIES OF ANY KIND, EITHER EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO NON-INFRINGEMENT, MERCHANTABILITY OR FIT FOR A PARTICULAR PURPOSE. See the Mulan PSL v2 for more details. Mulan Permissive Software License,Version 2 Mulan Permissive Software License,Version 2 (Mulan PSL v2) January 2020 http://license.coscl.org.cn/MulanPSL2 Your reproduction, use, modification and distribution of the Software shall be subject to Mulan PSL v2 (this License) with the following terms and conditions: 0. Definition Software means the program and related documents which are licensed under this License and comprise all Contribution(s). Contribution means the copyrightable work licensed by a particular Contributor under this License. Contributor means the Individual or Legal Entity who licenses its copyrightable work under this License. Legal Entity means the entity making a Contribution and all its Affiliates. Affiliates means entities that control, are controlled by, or are under common control with the acting entity under this License, ‘control’ means direct or indirect ownership of at least fifty percent (50%) of the voting power, capital or other securities of controlled or commonly controlled entity. 1. Grant of Copyright License Subject to the terms and conditions of this License, each Contributor hereby grants to you a perpetual, worldwide, royalty-free, non-exclusive, irrevocable copyright license to reproduce, use, modify, or distribute its Contribution, with modification or not. 2. Grant of Patent License Subject to the terms and conditions of this License, each Contributor hereby grants to you a perpetual, worldwide, royalty-free, non-exclusive, irrevocable (except for revocation under this Section) patent license to make, have made, use, offer for sale, sell, import or otherwise transfer its Contribution, where such patent license is only limited to the patent claims owned or controlled by such Contributor now or in future which will be necessarily infringed by its Contribution alone, or by combination of the Contribution with the Software to which the Contribution was contributed. The patent license shall not apply to any modification of the Contribution, and any other combination which includes the Contribution. If you or your Affiliates directly or indirectly institute patent litigation (including a cross claim or counterclaim in a litigation) or other patent enforcement activities against any individual or entity by alleging that the Software or any Contribution in it infringes patents, then any patent license granted to you under this License for the Software shall terminate as of the date such litigation or activity is filed or taken. 3. No Trademark License No trademark license is granted to use the trade names, trademarks, service marks, or product names of Contributor, except as required to fulfill notice requirements in Section 4. 4. Distribution Restriction You may distribute the Software in any medium with or without modification, whether in source or executable forms, provided that you provide recipients with a copy of this License and retain copyright, patent, trademark and disclaimer statements in the Software. 5. Disclaimer of Warranty and Limitation of Liability THE SOFTWARE AND CONTRIBUTION IN IT ARE PROVIDED WITHOUT WARRANTIES OF ANY KIND, EITHER EXPRESS OR IMPLIED. IN NO EVENT SHALL ANY CONTRIBUTOR OR COPYRIGHT HOLDER BE LIABLE TO YOU FOR ANY DAMAGES, INCLUDING, BUT NOT LIMITED TO ANY DIRECT, OR INDIRECT, SPECIAL OR CONSEQUENTIAL DAMAGES ARISING FROM YOUR USE OR INABILITY TO USE THE SOFTWARE OR THE CONTRIBUTION IN IT, NO MATTER HOW IT’S CAUSED OR BASED ON WHICH LEGAL THEORY, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGES. 6. Language THIS LICENSE IS WRITTEN IN BOTH CHINESE AND ENGLISH, AND THE CHINESE VERSION AND ENGLISH VERSION SHALL HAVE THE SAME LEGAL EFFECT. IN THE CASE OF DIVERGENCE BETWEEN THE CHINESE AND ENGLISH VERSIONS, THE CHINESE VERSION SHALL PREVAIL. END OF THE TERMS AND CONDITIONS How to Apply the Mulan Permissive Software License,Version 2 (Mulan PSL v2) to Your Software To apply the Mulan PSL v2 to your work, for easy identification by recipients, you are suggested to complete following three steps: i Fill in the blanks in following statement, including insert your software name, the year of the first publication of your software, and your name identified as the copyright owner; ii Create a file named “LICENSE” which contains the whole context of this License in the first directory of your software package; iii Attach the statement to the appropriate annotated syntax at the beginning of each source file. Copyright (c) [Year] [name of copyright holder] [Software Name] is licensed under Mulan PSL v2. You can use this software according to the terms and conditions of the Mulan PSL v2. You may obtain a copy of Mulan PSL v2 at: http://license.coscl.org.cn/MulanPSL2 THIS SOFTWARE IS PROVIDED ON AN "AS IS" BASIS, WITHOUT WARRANTIES OF ANY KIND, EITHER EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO NON-INFRINGEMENT, MERCHANTABILITY OR FIT FOR A PARTICULAR PURPOSE. See the Mulan PSL v2 for more details.

简介

博主:早睡的叶子 内容:关于conan的使用demo仓库 展开 收起
C++
MulanPSL-2.0
取消

发行版

暂无发行版

贡献者

全部

近期动态

加载更多
不能加载更多了
C++
1
https://gitee.com/makesex/conan_demo.git
git@gitee.com:makesex/conan_demo.git
makesex
conan_demo
conan使用demo和说明文档
master

搜索帮助