From: Thibault Saunier Date: Fri, 15 Jun 2018 14:25:33 +0000 (-0400) Subject: meson: Rename the gtkdoc option to gtk_doc X-Git-Tag: 1.19.3~491^2~517 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=125d411063fa12e8cd961bbe0af10054cb63874e;p=platform%2Fupstream%2Fgstreamer.git meson: Rename the gtkdoc option to gtk_doc This is what other modules use --- diff --git a/meson_options.txt b/meson_options.txt index 065f0e1..0b65811 100644 --- a/meson_options.txt +++ b/meson_options.txt @@ -4,5 +4,5 @@ option('debug_viewer', type : 'boolean', value : true, description : 'Build GstDebugViewer') option('introspection', type : 'boolean', value : true, yield : true, description : 'Generate gobject-introspection bindings') -option('gtkdoc', type : 'boolean', value : true, yield : true, +option('gtk_doc', type : 'boolean', value : true, yield : true, description : 'Generate API documentation with gtk-doc') diff --git a/validate/meson.build b/validate/meson.build index 1a4c5d8..c3ea9c4 100644 --- a/validate/meson.build +++ b/validate/meson.build @@ -27,7 +27,7 @@ subdir('launcher') subdir('tools') if build_machine.system() == 'windows' message('Disabling gtk-doc while building on Windows') -elif not get_option('gtkdoc') +elif not get_option('gtk_doc') message('gtk-doc is disabled via options') else if find_program('gtkdoc-scan', required : false).found()