[feat]: initial commit
This commit is contained in:
commit
7b48f34e94
24 changed files with 1354 additions and 0 deletions
11
build_debug.sh
Executable file
11
build_debug.sh
Executable file
|
|
@ -0,0 +1,11 @@
|
|||
#!/usr/bin/env bash
|
||||
set -eu
|
||||
|
||||
# This creates a build that is similar to a release build, but it is debuggable.
|
||||
# There is no hot reloading and no separate game library.
|
||||
|
||||
OUT_DIR="build/debug"
|
||||
mkdir -p "$OUT_DIR"
|
||||
odin build source/main_release -out:$OUT_DIR/game_debug.bin -strict-style -vet -debug
|
||||
cp -R assets $OUT_DIR
|
||||
echo "Debug build created in $OUT_DIR"
|
||||
Loading…
Add table
Add a link
Reference in a new issue