From: Nirbheek Chauhan Date: Wed, 25 Jul 2018 14:06:20 +0000 (+0530) Subject: Convert common meson options to feature options X-Git-Tag: 1.19.3~481^2~304 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=eaf17bfff444adc5ec5b00f201e596d374ff074f;p=platform%2Fupstream%2Fgstreamer.git Convert common meson options to feature options These changes have been mirrored in all subproject repositories. https://bugzilla.gnome.org/show_bug.cgi?id=795107 --- diff --git a/meson_options.txt b/meson_options.txt index 3e5d35d..be891a3 100644 --- a/meson_options.txt +++ b/meson_options.txt @@ -11,7 +11,6 @@ option('sharp', type : 'feature', value : 'disabled') option('custom_subprojects', type : 'string', value : '', description : 'Comma-separated project names') # Common options, automatically inherited by subprojects -option('gtk_doc', type : 'boolean', value : true, - description : 'Generate API documentation with gtk-doc') -option('introspection', type : 'boolean', value : true, - description : 'Whether to disable the introspection generation') +option('examples', type : 'feature', value : 'auto', description : 'Build examples') +option('gtk_doc', type : 'feature', value : 'auto', description : 'Generate API documentation with gtk-doc') +option('introspection', type : 'feature', value : 'auto', description : 'Generate introspection data')