From: Tim-Philipp Müller Date: Fri, 5 Jun 2020 09:40:29 +0000 (+0100) Subject: meson_options: disable gtk_doc by default X-Git-Tag: 1.19.3~481^2~107 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=8ecede2ff1d3cd8b4b545005ce9a200af3ebb287;p=platform%2Fupstream%2Fgstreamer.git meson_options: disable gtk_doc by default We don't need to build documentation for gtk-doc using subprojects, not by default at least, and our 'auto' option would override the subproject 'disabled' default in libnice's case. Part-of: --- diff --git a/meson_options.txt b/meson_options.txt index 8b74876..498dddd 100644 --- a/meson_options.txt +++ b/meson_options.txt @@ -21,4 +21,4 @@ option('introspection', type : 'feature', value : 'auto', description : 'Generat option('nls', type : 'feature', value : 'auto', description : 'Enable native language support (translations)') option('orc', type : 'feature', value : 'auto', description : 'Enable Optimized Inner Loop Runtime Compiler') option('doc', type : 'feature', value : 'auto', description : 'Generate API documentation with hotdoc') -option('gtk_doc', type : 'feature', value : 'auto', description : 'Generate API documentation with gtk-doc') +option('gtk_doc', type : 'feature', value : 'disabled', description : 'Generate API documentation with gtk-doc')