Conan Client: Difference between revisions
Jump to navigation
Jump to search
Line 34: | Line 34: | ||
conan inspect poco/1.9.4 | conan inspect poco/1.9.4 | ||
cat conanfile.txt | cat conanfile.txt | ||
</source> | |||
<source lang="bash"> | |||
cd $ACADEMIA_HOME/wss/ccpp_wss/ | |||
git clone https://github.com/drodri/clion_conan.git;cd clion_conan/boost_poco_md5 | |||
conan profile remove settings.compiler.libcxx default | |||
mkdir cmake-build-debug; cd cmake-build-debug | |||
conan install .. -s compiler="Visual Studio" -s compiler.runtime=MDd \ | |||
-s build_type=Debug -s compiler.version=16 | |||
</source> | </source> | ||
Revision as of 15:48, 24 July 2021
Linux
apt install python3-all python3-pip python3-venv
python3 -m venv ~/.venv/conan
source ~/.venv/conan/bin/activate
python -m pip install -U pip
pip install conan
conan --help
Windows
run as administrator 1. Press ⊞ + R 2. Type in cmd 3. Press Ctrl + Shift + Enter 4. Choose Yes and Press Enter
python -m pip install virtualenv
python -m venv ~\.venv\conan
~\.venv\conan\Scripts\activate
python -m pip install -U pip
pip install conan
conan --help
Getting Started
cd $ACADEMIA_HOME/wss/ccpp_wss/
git clone https://github.com/conan-io/examples.git
cd examples/libraries/poco/md5/
conan search poco --remote=conancenter
conan inspect poco/1.9.4
cat conanfile.txt
cd $ACADEMIA_HOME/wss/ccpp_wss/
git clone https://github.com/drodri/clion_conan.git;cd clion_conan/boost_poco_md5
conan profile remove settings.compiler.libcxx default
mkdir cmake-build-debug; cd cmake-build-debug
conan install .. -s compiler="Visual Studio" -s compiler.runtime=MDd \
-s build_type=Debug -s compiler.version=16
Knowledge
git clone https://github.com/conan-io/conan.git conan;\ cd conan; python -m pip install -e . pip install conan --upgrade
ls -la ~/.conan/profiles/ cat ~/.conan/profiles/default
conan info .. conan search "*" conan search poco/1.9.4@ conan info .. --graph=file.html conan install .. --profile=gcc_x86 conan install .. --settings arch=x86 conan install .. --settings os="Linux" --settings compiler="gcc"