Make it so that DNEBUG is forced on release build, and that the UI stats counter will show that this is a debug build or not via NDEBUG.

This commit is contained in:
Zed A. Shaw 2025-01-18 03:18:44 -05:00
parent cf9682ed70
commit 53a151511e
4 changed files with 11 additions and 4 deletions

View file

@ -10,7 +10,7 @@ build:
meson compile -j 10 -C builddir
release_build:
meson --wipe builddir --buildtype release
meson --wipe builddir -Dcpp_args=-DNDEBUG=1 --buildtype release
meson compile -j 10 -C builddir
debug_build: