This commit is contained in:
Synthasmagoria 2026-07-21 13:17:10 +02:00
commit ded8dbba8c
199 changed files with 367950 additions and 0 deletions

7
build_desktop.sh Executable file
View file

@ -0,0 +1,7 @@
#!/bin/bash -eu
OUT_DIR="build/desktop"
mkdir -p $OUT_DIR
odin build . -strict-style -out:$OUT_DIR/game_desktop.bin -no-bounds-check -disable-assert -o:size -extra-linker-flags:"-Wl,--gc-sections,-s"
cp -R ./assets/ ./$OUT_DIR/
echo "Desktop build created in ${OUT_DIR}"