diff options
author | David Robillard <d@drobilla.net> | 2021-11-02 20:51:29 -0400 |
---|---|---|
committer | David Robillard <d@drobilla.net> | 2021-11-02 20:51:29 -0400 |
commit | b805b7a50fc5d37c322d2f73d1e3a980b25d8369 (patch) | |
tree | 4d454daa2031e1ea6bd72eedf32f6495f44dff2a | |
parent | 24f60b6d827ca71350493c59b829ac3d0c6ced6a (diff) | |
download | zix-b805b7a50fc5d37c322d2f73d1e3a980b25d8369.tar.gz zix-b805b7a50fc5d37c322d2f73d1e3a980b25d8369.tar.bz2 zix-b805b7a50fc5d37c322d2f73d1e3a980b25d8369.zip |
Avoid printing configuration summary as a subproject
-rw-r--r-- | meson.build | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/meson.build b/meson.build index 57cf105..a5fea1b 100644 --- a/meson.build +++ b/meson.build @@ -315,7 +315,7 @@ if not get_option('benchmarks').disabled() endif endif -if meson.version().version_compare('>=0.53.0') +if not meson.is_subproject() and meson.version().version_compare('>=0.53.0') summary('Benchmarks', build_benchmarks, bool_yn: true) summary('Tests', get_option('tests'), bool_yn: true) |