From c0363de45942f32ad17351183b5469aca658ded6 Mon Sep 17 00:00:00 2001 From: Christian Hergert Date: Tue, 22 Aug 2023 10:53:25 -0700 Subject: [PATCH] build: style cleanup and group unit testing bits together --- meson.build | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/meson.build b/meson.build index cf7d113..c998bc9 100644 --- a/meson.build +++ b/meson.build @@ -160,13 +160,12 @@ subdir('tools') have_tests = get_option('tests') if have_tests -subdir('tests') + subdir('tests') endif +summary('Enabled', have_tests, section: 'Tests') if get_option('docs') and get_option('introspection').allowed() subdir('docs') endif configure_file(output: 'config.h', configuration: config_h) - -summary('Enabled', have_tests, section: 'Tests')