- Install Conan 2.0 within a python venv using ./scripts/setup-conan-with-venv.sh
- Source the virtual environment with:
source ./conan_venv/bin/activate
- Install conan dependencies and invoke cmake preset to use conan toolchain
conan install . --build=missing -r conancenter
cmake --preset conan-release
- Compile the code (tests enabled by default)
cmake --build --preset conan-release
ctest --test-dir ./build/Release/ --output-on-failure