mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-14 05:12:09 +00:00
1ee4c316c1
we want to do this because the other "examples" in plugins (tests etc) need a lot deps (qt5 etc) that are not needed by gst-examples itself.
21 lines
1.4 KiB
Meson
21 lines
1.4 KiB
Meson
option('python', type : 'feature', value : 'auto')
|
|
option('libav', type : 'feature', value : 'auto')
|
|
option('libnice', type : 'feature', value : 'auto')
|
|
option('ugly', type : 'feature', value : 'auto')
|
|
option('bad', type : 'feature', value : 'auto')
|
|
option('devtools', type : 'feature', value : 'auto')
|
|
option('ges', type : 'feature', value : 'auto')
|
|
option('rtsp_server', type : 'feature', value : 'auto')
|
|
option('omx', type : 'feature', value : 'disabled')
|
|
option('vaapi', type : 'feature', value : 'auto')
|
|
option('sharp', type : 'feature', value : 'disabled')
|
|
option('custom_subprojects', type : 'string', value : '', description : 'Comma-separated project names')
|
|
option('gst-examples', type : 'feature', value : 'auto', description : 'Build gst-examples')
|
|
|
|
# Common options, automatically inherited by subprojects
|
|
option('examples', type : 'feature', value : 'auto', description : 'Build examples')
|
|
option('introspection', type : 'feature', value : 'auto', description : 'Generate introspection data')
|
|
option('nls', type : 'feature', value : 'auto', description : 'Enable native language support (translations)')
|
|
option('orc', type : 'feature', value : 'auto', description : 'Enable Optimized Inner Loop Runtime Compiler')
|
|
option('doc', type : 'feature', value : 'auto', description : 'Generate API documentation with hotdoc')
|
|
option('gtk_doc', type : 'feature', value : 'auto', description : 'Generate API documentation with gtk-doc')
|