diff options
author | Jussi Pakkanen <jpakkane@gmail.com> | 2017-01-08 22:47:57 +0200 |
---|---|---|
committer | Jussi Pakkanen <jpakkane@gmail.com> | 2017-01-09 21:11:48 +0200 |
commit | fbabe8ad85725762e46b7c4c2f2c680c3351ec80 (patch) | |
tree | d8293e07d3e66096e9789e41cb04364588f2d841 /mesonbuild/modules/gnome.py | |
parent | 24221d71ccd341759b008cf1918826910c40247c (diff) | |
download | meson-fbabe8ad85725762e46b7c4c2f2c680c3351ec80.zip meson-fbabe8ad85725762e46b7c4c2f2c680c3351ec80.tar.gz meson-fbabe8ad85725762e46b7c4c2f2c680c3351ec80.tar.bz2 |
There are two different kinds of extensions: modules that create new
objects directly and snippets that just call into interpreter methods.
Diffstat (limited to 'mesonbuild/modules/gnome.py')
-rw-r--r-- | mesonbuild/modules/gnome.py | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/mesonbuild/modules/gnome.py b/mesonbuild/modules/gnome.py index ad34640..47fa68e 100644 --- a/mesonbuild/modules/gnome.py +++ b/mesonbuild/modules/gnome.py @@ -29,6 +29,7 @@ from .. import compilers from .. import interpreter from . import GResourceTarget, GResourceHeaderTarget, GirTarget, TypelibTarget, VapiTarget from . import find_program, get_include_args +from . import ExtensionModule # gresource compilation is broken due to the way @@ -57,7 +58,7 @@ def gir_has_extra_lib_arg(): pass return _gir_has_extra_lib_arg -class GnomeModule: +class GnomeModule(ExtensionModule): gir_dep = None @staticmethod |