An effort to write a communication app.
Install:
$ pip install --user conan
Upgrade:
$ pip install -U --user conan
This is a one-time action.
If you need to use a different conan config, set a custom conan base directory via this variable:
export CONAN_USER_HOME=~/.my-conan
Generates default profile detecting GCC and sets old ABI:
$ conan profile new default --detect
Sets libcxx to C++11 ABI:
$ conan profile update settings.compiler.libcxx=libstdc++11 default
$ cd <proj_dir>
$ mkdir cmake-build-release && cd cmake-build-release
$ conan install .. -u -pr default -b missing