Conan: Difference between revisions

From Chorke Wiki
Jump to navigation Jump to search
Line 27: Line 27:


==References==
==References==
{|
| valign="top" |
* [https://conan.io/ Conan, the C / C++ Package Manager]
* [https://conan.io/ Conan, the C / C++ Package Manager]
* [https://blog.conan.io/2018/06/11/Transparent-CMake-Integration.html Conan-CMake Transparent Integration]
* [https://blog.conan.io/2018/06/11/Transparent-CMake-Integration.html Conan-CMake Transparent Integration]
* [https://help.sonatype.com/repomanager3/formats/conan-repositories  Nexus Conan Repository Config]
* [https://help.sonatype.com/repomanager3/formats/conan-repositories  Nexus Conan Repository Config]
----
* [https://docs.docker.com/engine/reference/commandline/volume_create/ Docker volume create]
* [https://www.jfrog.com/confluence/display/RTF/Installing+with+Docker Installing with Docker]
* [https://www.jfrog.com/confluence/display/RTF4X/Running+with+Docker Running with Docker]
----
* [https://github.com/memsharded/hello Conan Hello World]
* [https://github.com/memsharded/hello Conan Hello World]
* [https://conan.io/downloads.html Downloads]
* [https://conan.io/downloads.html Downloads]
| valign="top" |
|}

Revision as of 10:17, 24 August 2020

yay -S conan
pip install conan
brew install conan
mkdir build; cd build
conan install ..
conan info ..

conan search ..
conan search zlib/1.2.8@lasote/stable
conan .. -G "Visual Studio 14 Win64"
conan new academia/1.0.0 -t

conan remote add chorke https://cdn.chorke.org/artifactory/api/conan/conan-local
conan upload academia/1.0.0@diego/testing -r=chorke --all

conan remove "*" -f
conan search
cmake --build . --config Release

conan install ..
cmake --build . --config Release

References