Ready for release, have the intro story prototyped.

This commit is contained in:
Zed A. Shaw 2026-04-05 11:24:39 -04:00
parent 8fb2319500
commit 7ed2ba3ecb
5 changed files with 26 additions and 18 deletions

View file

@ -33,6 +33,15 @@ else
sh -x ./scripts/release.sh
endif
release:
meson compile -j 10 -C builddir
ifeq '$(OS)' 'Windows_NT'
powershell -executionpolicy bypass .\scripts\release.ps1
else
sh -x ./scripts/release.sh
endif
debug_build:
meson setup --wipe builddir -Db_ndebug=true --buildtype debugoptimized
meson compile -j 10 -C builddir