gstreamer/ext/meson.build
Matthew Waters ca67a460ee meson: add build files for the qml plugin
Tested on linux with X11/wayland and semi-tested on Windows.

Windows crashes on item destruction however this is better than nothing.

Fix up some win32 build issues on the way with mismatched {} and
G_STMT_{START,END}
2018-04-15 23:49:57 +10:00

30 lines
615 B
Meson

subdir('aalib')
subdir('cairo')
subdir('flac')
subdir('gdk_pixbuf')
subdir('gtk')
subdir('jack')
subdir('jpeg')
subdir('lame')
subdir('libcaca')
# FIXME: dv plugin fails to link with msvc, wants pthread.lib
if cc.get_id() != 'msvc'
subdir('dv')
endif
subdir('libpng')
subdir('mpg123')
subdir('raw1394')
subdir('qt')
subdir('pulse')
subdir('shout2')
subdir('soup')
subdir('speex')
# FIXME: taglib fails to compile and link with msvc
if cc.get_id() == 'msvc'
message('Building with MSVC, disabling taglib support. Patches welcome!')
else
subdir('taglib')
endif
subdir('twolame')
subdir('vpx')
subdir('wavpack')