aboutsummaryrefslogtreecommitdiffstats
path: root/meson.build
diff options
context:
space:
mode:
authorDavid Robillard <d@drobilla.net>2025-11-05 12:45:17 -0500
committerDavid Robillard <d@drobilla.net>2025-11-05 12:45:17 -0500
commit7cb031f12795a3f4a62428322e30a7ce60358a5c (patch)
tree9def0695e151a48d6c516b7c011784b3026756b7 /meson.build
parentb02b868091a4c83cf0d2200d7a5daf43cdf2284a (diff)
downloadlv2-7cb031f12795a3f4a62428322e30a7ce60358a5c.tar.xz
Add configuration option to control command-line tool installationHEADmain
Diffstat (limited to 'meson.build')
-rw-r--r--meson.build4
1 files changed, 3 insertions, 1 deletions
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()