Basic tests and trying to fix address sanitizer errors

This commit is contained in:
Krzosa Karol
2026-03-21 10:10:24 +01:00
parent 207fc65fec
commit 94ee03800d
5 changed files with 46 additions and 23 deletions

View File

@@ -13,7 +13,8 @@ if [ ! -e "src/external/SDL" ]; then
git clone https://github.com/libsdl-org/SDL.git
cd SDL
git checkout release-3.2.30
# cmake -S . -B build_linux -DCMAKE_BUILD_TYPE=Release -DSDL_PIPEWIRE=OFF
# We need older version of SDL3 because there is a bug on wayland that
# doubles click events and it's kind of unusable
cmake -S . -B build_linux -DSDL_PIPEWIRE=OFF -DCMAKE_BUILD_TYPE=Release -DCMAKE_INSTALL_PREFIX=/usr
cd build_linux
sudo make -j16 install