Had to bring back the static options so that meson actually builds it as static.

This commit is contained in:
Zed A. Shaw 2026-04-03 12:15:25 -04:00
parent c14e244084
commit 514bfec0ea
2 changed files with 19 additions and 7 deletions

View file

@ -41,20 +41,20 @@ test: build
run: build test
ifeq '$(OS)' 'Windows_NT'
powershell "cp ./builddir/zedcaster.exe ."
./zedcaster
powershell "cp ./builddir/under_the_dome.exe ."
./under_the_dome
else
./builddir/zedcaster
./builddir/under_the_dome
endif
debug: build
gdb --nx -x .gdbinit --ex run --args builddir/runtests
debug_run: build
gdb --nx -x .gdbinit --batch --ex run --ex bt --ex q --args builddir/zedcaster
gdb --nx -x .gdbinit --batch --ex run --ex bt --ex q --args builddir/under_the_dome
debug_walk: build test
gdb --nx -x .gdbinit --batch --ex run --ex bt --ex q --args builddir/zedcaster t
gdb --nx -x .gdbinit --batch --ex run --ex bt --ex q --args builddir/under_the_dome t
clean:
meson compile --clean -C builddir