diff options
author | Tim-Philipp Müller <tim@centricular.com> | 2018-02-12 18:34:16 +0000 |
---|---|---|
committer | Tim-Philipp Müller <tim@centricular.com> | 2018-02-12 18:40:10 +0000 |
commit | bbab8f79ade3d16b0a8672db5b06d115cfc88155 (patch) | |
tree | 13bddfd176b255fa68865f1fd926467b57febe8c /ext | |
parent | 6c75e6c5e0d5ae128b52437c790c9130acf89a7b (diff) | |
download | gstreamer-plugins-good-bbab8f79ade3d16b0a8672db5b06d115cfc88155.tar.gz |
qt: hook up to build
https://bugzilla.gnome.org/show_bug.cgi?id=754094
Diffstat (limited to 'ext')
-rw-r--r-- | ext/Makefile.am | 7 | ||||
-rw-r--r-- | ext/meson.build | 1 |
2 files changed, 8 insertions, 0 deletions
diff --git a/ext/Makefile.am b/ext/Makefile.am index cb1293b78..f996b65c0 100644 --- a/ext/Makefile.am +++ b/ext/Makefile.am @@ -83,6 +83,11 @@ else PULSE_DIR = endif +if USE_QT +QT_DIR=qt +else +QT_DIR= +endif if USE_SHOUT2 SHOUT2_DIR = shout2 @@ -142,6 +147,7 @@ SUBDIRS = \ $(LIBPNG_DIR) \ $(MPG123_DIR) \ $(PULSE_DIR) \ + $(QT_DIR) \ $(SHOUT2_DIR) \ $(SOUP_DIR) \ $(SPEEX_DIR) \ @@ -164,6 +170,7 @@ DIST_SUBDIRS = \ libpng \ mpg123 \ pulse \ + qt \ raw1394 \ shout2 \ soup \ diff --git a/ext/meson.build b/ext/meson.build index d5eb38292..52eb4c748 100644 --- a/ext/meson.build +++ b/ext/meson.build @@ -14,6 +14,7 @@ endif subdir('libpng') subdir('mpg123') subdir('raw1394') +# FIXME: subdir('qt') subdir('pulse') subdir('shout2') subdir('soup') |