meson.build: meson_options.txt: add build option to disable building tests

These tests take a long time to build and link, especially with lto.

Signed-off-by: stefan11111 <stefan11111@shitposting.expert>
This commit is contained in:
stefan11111
2025-07-01 20:44:27 +03:00
committed by Enrico Weigelt, metux IT consult
parent 96be335fd3
commit 6851e17816
2 changed files with 4 additions and 1 deletions

View File

@@ -777,7 +777,8 @@ endif
subdir('hw')
if host_machine.system() != 'windows'
build_tests = get_option('tests') and host_machine.system() != 'windows'
if build_tests
subdir('test')
endif