it pong, wow
git submodule update --init
cp CMakeUserPresets.sample.json CMakeUserPresets.json
cmake --preset Debug_x64
# or
cmake --preset Release_x64
cd build/Debug_x64 # or Release_x64
make
Memory leaks checking can be spammy, to disable it:
# inside debug build folder
EXPORT ASAN_OPTIONS=detect_leaks=0
./cpp_pong
./lint.sh