build(mk): added debug symbols when building with tests

This commit is contained in:
2025-02-17 12:58:51 -05:00
parent 9ae69d82fc
commit f973fec061

4
mk
View File

@@ -2,9 +2,9 @@
# Check for the --noTest flag
if [[ "$1" == "--noTest" ]]; then
meson setup build -Dbuild_tests=false
meson setup build -Dbuild_tests=false --buildtype=release
else
meson setup build -Dbuild_tests=true
meson setup build -Dbuild_tests=true --buildtype=debug
fi
# Compile the project