Conan: Difference between revisions
Jump to navigation
Jump to search
Line 29: | Line 29: | ||
* [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://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 07:36, 27 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