From 46d8bb28815f55d19c17b01222ac56a7ea3ebd80 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Tim-Philipp=20M=C3=BCller?= Date: Wed, 19 Sep 2018 12:10:14 +0100 Subject: [PATCH] meson: re-arrange options --- meson_options.txt | 11 +++++++---- 1 file changed, 7 insertions(+), 4 deletions(-) diff --git a/meson_options.txt b/meson_options.txt index 40d676fe40..5b31724426 100644 --- a/meson_options.txt +++ b/meson_options.txt @@ -1,11 +1,14 @@ +# Common feature options +option('examples', type : 'feature', value : 'auto', yield : true, + description : 'Build the examples') +option('tests', type : 'feature', value : 'auto', yield : true, + description : 'Build and enable unit tests') option('introspection', type : 'feature', value : 'auto', yield : true, description : 'Generate gobject-introspection bindings') + +# Common options option('package-name', type : 'string', yield : true, description : 'package name to use in plugins') option('package-origin', type : 'string', value : 'Unknown package origin', yield : true, description : 'package origin URL to use in plugins') -option('tests', type : 'feature', value : 'auto', yield : true, - description : 'Build and enable unit tests') -option('examples', type : 'feature', value : 'auto', yield : true, - description : 'Build the examples')