Skip to content

Latest commit

 

History

History
32 lines (26 loc) · 437 Bytes

README.md

File metadata and controls

32 lines (26 loc) · 437 Bytes

cpp_pong

it pong, wow

Setup

git submodule update --init
cp CMakeUserPresets.sample.json CMakeUserPresets.json
cmake --preset Debug_x64
# or 
cmake --preset Release_x64

Build

cd build/Debug_x64 # or Release_x64
make

Running

Memory leaks checking can be spammy, to disable it:

# inside debug build folder
EXPORT ASAN_OPTIONS=detect_leaks=0
./cpp_pong

Lint

./lint.sh