diff options
-rw-r--r-- | meson.build | 8 |
1 files changed, 6 insertions, 2 deletions
diff --git a/meson.build b/meson.build index 47f9c56..aeb79bf 100644 --- a/meson.build +++ b/meson.build @@ -179,13 +179,17 @@ install_headers(cpp_headers, subdir: versioned_name / 'lilv') # Tools # ######### -subdir('tools') +if not get_option('tools').disabled() + subdir('tools') +endif ############ # Bindings # ############ -subdir('bindings/python') +if not get_option('bindings_py').disabled() + subdir('bindings/python') +endif ########### # Support # |