From 348ae6071d98a8c42bc031110abf09855d99c132 Mon Sep 17 00:00:00 2001 From: ValorZard Date: Fri, 29 Aug 2025 10:46:20 -0700 Subject: [PATCH] add bash script for easy building --- build_sdl_and_friends.sh | 6 ++++++ 1 file changed, 6 insertions(+) create mode 100755 build_sdl_and_friends.sh diff --git a/build_sdl_and_friends.sh b/build_sdl_and_friends.sh new file mode 100755 index 0000000..11ab780 --- /dev/null +++ b/build_sdl_and_friends.sh @@ -0,0 +1,6 @@ +cd SDL +cmake -S . -B build +cmake --build build +cd ../SDL_image +cmake -S . -B build -DSDL3_DIR=../SDL/build +cmake --build build \ No newline at end of file