libgnt/libgnt

Make doc/introspection options yield to parent.

2020-08-22, Elliott Sales de Andrade
d67ecd2b2223
Parents 23e34422bea8
Children d390bf1e62e7
Make doc/introspection options yield to parent.

This allows `meson -Ddoc=false` to automatically propagate from Pidgin to the libgnt subproject, without having to specify `-Dlibgnt:doc=false`.

Reviewed at https://reviews.imfreedom.org/r/85/
--- a/meson_options.txt Thu Aug 13 18:23:33 2020 -0500
+++ b/meson_options.txt Sat Aug 22 19:25:47 2020 -0500
@@ -1,5 +1,5 @@
-option('doc', type : 'boolean', value : true,
+option('doc', type : 'boolean', value : true, yield : true,
description : 'build documentation with gtk-doc')
-option('introspection', type : 'boolean', value : true,
+option('introspection', type : 'boolean', value : true, yield : true,
description : 'build introspection data')