Basic setup, to bring conan into the enviroment
./setup.sh
source ./venv/bin/activate
to get requirements, build those which are missing
using cmake_layout to put stuff in sensible places
conan install . --build=missing -pr ./example_profile
Ensure the correct build enviroment
source build/Release/generators/conanbuild.sh
cmake --preset conan-release
if you want look at build/Release/generators/CMakePresets.json to see what is being done for you
Use the preset to do the cmake build
cmake --build build --preset conan-release
./build/Release/hello