From 7cb031f12795a3f4a62428322e30a7ce60358a5c Mon Sep 17 00:00:00 2001 From: David Robillard Date: Wed, 5 Nov 2025 12:45:17 -0500 Subject: Add configuration option to control command-line tool installation --- meson.build | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) (limited to 'meson.build') diff --git a/meson.build b/meson.build index 925b7c0..de2648d 100644 --- a/meson.build +++ b/meson.build @@ -504,7 +504,9 @@ endif ############ # Command-line utilities -subdir('util') +if not get_option('tools').disabled() + subdir('util') +endif # Data and build tests if not get_option('tests').disabled() -- cgit v1.2.1