gstreamer/gst/meson.build
Nirbheek Chauhan 8f807477eb meson: Add feature options for all plugins
Checks for GL, Qt5, and C++ are still automagic. FIXMEs have been
added for these so they can be fixed later.

https://bugzilla.gnome.org/show_bug.cgi?id=795107
2018-07-27 18:42:54 +05:30

14 lines
718 B
Meson

foreach plugin : ['alpha', 'apetag', 'audiofx', 'audioparsers', 'auparse',
'autodetect', 'avi', 'cutter', 'debugutils', 'deinterlace',
'dtmf', 'effectv', 'equalizer', 'flv', 'flx', 'goom',
'goom2k1', 'icydemux', 'id3demux', 'imagefreeze',
'interleave', 'isomp4', 'law', 'level', 'matroska',
'monoscope', 'multifile', 'multipart', 'replaygain', 'rtp',
'rtpmanager', 'rtsp', 'shapewipe', 'smpte', 'spectrum',
'udp', 'videobox', 'videocrop', 'videofilter', 'videomixer',
'wavenc', 'wavparse', 'y4m']
if not get_option(plugin).disabled()
subdir(plugin)
endif
endforeach