build(meson): added command line options to not build tests

meson_options added which includes a build test variable. If this is false (default: true) tests will be build. the mk script can controll this with the --noTest command line argument.
This commit is contained in:
2025-01-19 08:34:21 -05:00
parent 7d6062b6c1
commit e28d407cd7
2 changed files with 16 additions and 3 deletions

1
meson_options.txt Normal file
View File

@@ -0,0 +1 @@
option('build_tests', type: 'boolean', value: true, description: 'Build tests')