accuyork_2025_07

0
0
0
C++
public

Basic setup, to bring conan into the environment

./setup.sh
source ./venv/bin/activate

Use information from conanfile.py & example_profile

to get requirements, build those which are missing

using cmake_layout to put stuff in sensible places

conan install . --build=missing -pr ./example_profile

Use preset that was generated to configure cmake

cmake --preset conan-relwithdebinfo

if you want to look at build/RelWithDebInfo/generators/CMakePresets.json to see what is being done for you

Use the preset to do the cmake build

cmake --build --preset conan-relwithdebinfo

We could do extra stuff like test/install, but for now just run the built binary

./build/RelWithDebInfo/bench/bench --benchmark_min_time=1s

v0.3.3[beta]