From: Stéphane Graber Date: Fri, 27 May 2022 23:54:40 +0000 (-0400) Subject: meson: Add tools option X-Git-Tag: lxc-5.0.0~14^2~2 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=b3d189920acdae74362f3c046091524837ed97ad;p=thirdparty%2Flxc.git meson: Add tools option Signed-off-by: Stéphane Graber --- diff --git a/meson.build b/meson.build index 1d58e95cc..ae3959515 100644 --- a/meson.build +++ b/meson.build @@ -121,6 +121,7 @@ want_examples = get_option('examples') want_pam_cgroup = get_option('pam-cgroup') want_mans = get_option('man') want_tests = get_option('tests') +want_tools = get_option('tools') conf.set_quoted('DEFAULT_CGROUP_PATTERN', cgrouppattern) diff --git a/meson_options.txt b/meson_options.txt index 1940301ab..cb466bd36 100644 --- a/meson_options.txt +++ b/meson_options.txt @@ -20,6 +20,9 @@ option('man', type: 'boolean', value: 'true', option('pam-cgroup', type: 'boolean', value: 'false', description: 'build and install the pam cgroup module') +option('tools', type: 'boolean', value: 'true', + description: 'build and install tools') + option('tests', type: 'boolean', value: 'false', description: 'build and install tests')