From b7400b14ed91fb1b612024808297bef50ae24fc2 Mon Sep 17 00:00:00 2001 From: Daan De Meyer Date: Thu, 15 May 2025 14:52:48 +0200 Subject: [PATCH] meson: Build fuzz executables by default if fuzz-tests option is enabled fuzz-tests is enabled by default now but we still don't build the fuzz executables by default. Let's change that so that we always make sure these still compile when we make changes. --- meson.build | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/meson.build b/meson.build index 83442da079a..aeff1b3629c 100644 --- a/meson.build +++ b/meson.build @@ -2196,7 +2196,7 @@ test_additional_kwargs = { } fuzz_template = executable_template + { - 'build_by_default' : fuzzer_build, + 'build_by_default' : want_fuzz_tests, 'install' : false, } -- 2.47.3