]> git.ipfire.org Git - thirdparty/lxc.git/commitdiff
meson: Add tools option
authorStéphane Graber <stgraber@ubuntu.com>
Fri, 27 May 2022 23:54:40 +0000 (19:54 -0400)
committerStéphane Graber <stgraber@ubuntu.com>
Sat, 28 May 2022 02:02:36 +0000 (22:02 -0400)
Signed-off-by: Stéphane Graber <stgraber@ubuntu.com>
meson.build
meson_options.txt

index 1d58e95cc248b9014f1cab88909914138fe43fa7..ae395951549a4cf7618578607f5ec5272a38fbfa 100644 (file)
@@ -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)
 
index 1940301ab941c07dc002c95ada37669f5a154607..cb466bd367bcb203346c650d283e87f297e783d4 100644 (file)
@@ -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')