summaryrefslogtreecommitdiff
path: root/meson_options.txt
diff options
context:
space:
mode:
authorThibault Saunier <tsaunier@igalia.com>2018-07-08 10:36:36 -0400
committerThibault Saunier <tsaunier@igalia.com>2018-07-08 16:02:28 -0400
commitdb827dbd0077d4fbdf3bc8c53f5b5a9eabe1b73c (patch)
treea373a88eb2534e1c7f0615bcb0b7b866f4dfdeaf /meson_options.txt
parent2a190557cf76ce0bbfeb3a18958ebbf34fba5982 (diff)
python: Fix GES.Timelineset_child_property
Implementing it in the overrides as PyGObject won't be able to properly convert python values to GValues in some cases. Using g_object_set_property works as some logic is implemented inside PyGObject for that particular case. This is a "regression" due to https://bugzilla.gnome.org/review?bug=769789&attachment=348766 were we end up with an OverflowError while setting G_TYPE_UINT children properties.
Diffstat (limited to 'meson_options.txt')
-rw-r--r--meson_options.txt2
1 files changed, 2 insertions, 0 deletions
diff --git a/meson_options.txt b/meson_options.txt
index 2bf6061f..75491077 100644
--- a/meson_options.txt
+++ b/meson_options.txt
@@ -2,3 +2,5 @@ option('introspection', type : 'boolean', value : true, yield : true,
description : 'Generate gobject-introspection bindings')
option('gtk_doc', type : 'boolean', value : true, yield : true,
description : 'Build API documentation with gtk-doc')
+option('pygi-overrides-dir', type : 'string', value : '',
+ description: 'Path to pygobject overrides directory') \ No newline at end of file