mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-11 20:01:35 +00:00
ca67a460ee
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}
30 lines
615 B
Meson
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')
|