Conan: Difference between revisions

From Chorke Wiki
Jump to navigation Jump to search
No edit summary
Line 28: Line 28:
==References==
==References==
* [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://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]

Revision as of 12:37, 24 April 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