From 8358b34efa8489617440ea7bb277d72cc26182f7 Mon Sep 17 00:00:00 2001 From: Max Kellermann Date: Mon, 5 Oct 2020 19:44:48 +0200 Subject: [PATCH] meson_options.txt: move "test" to a new section --- meson_options.txt | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) diff --git a/meson_options.txt b/meson_options.txt index 0a70ff3a3..992cffd36 100644 --- a/meson_options.txt +++ b/meson_options.txt @@ -2,8 +2,6 @@ option('documentation', type: 'feature', description: 'Build documentation') option('html_manual', type: 'boolean', value: true, description: 'Build the HTML manual') option('manpages', type: 'boolean', value: true, description: 'Build manual pages') -option('test', type: 'boolean', value: false, description: 'Build the unit tests and debug programs') - option('syslog', type: 'feature', description: 'syslog support') option('inotify', type: 'boolean', value: true, description: 'inotify support (for automatic database update)') option('io_uring', type: 'feature', description: 'Linux io_uring support using liburing') @@ -14,6 +12,12 @@ option('systemd', type: 'feature', description: 'systemd support') option('systemd_system_unit_dir', type: 'string', description: 'systemd system service directory') option('systemd_user_unit_dir', type: 'string', description: 'systemd user service directory') +# +# Options for developers +# + +option('test', type: 'boolean', value: false, description: 'Build the unit tests and debug programs') + # # Android #