Install SDL2 dependencies
sudo apt-get update
sudo apt-get install -y libsdl2-dev libsdl2-ttf-dev
Clone dependencies
git submodule init
git submodule update --recursive
Build
mkdir build
cmake -B build -DCMAKE_BUILD_TYPE=Debug
cmake --build build --config Debug
Run tests
cd build
ctest -C Debug