Solutions to https://adventofcode.com/2021 and https://adventofcode.com/2022
- cmake
- gcc or clang
- make (or other build system supported by cmake)
- cmocka (optional, for unit tests)
mkdir build
cd build
cmake -DCMAKE_BUILD_TYPE=Release ..
cmake --build .