mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-14 13:21:28 +00:00
7ce24e6ff7
Add minimal unit test toolchain files and a simple vaapipostproc unit test.
12 lines
776 B
Meson
12 lines
776 B
Meson
option('with_encoders', type : 'combo', choices : ['yes', 'no', 'auto'], value : 'auto')
|
|
option('with_drm', type : 'combo', choices : ['yes', 'no', 'auto'], value : 'auto')
|
|
option('with_x11', type : 'combo', choices : ['yes', 'no', 'auto'], value : 'auto')
|
|
option('with_glx', type : 'combo', choices : ['yes', 'no', 'auto'], value : 'auto')
|
|
option('with_wayland', type : 'combo', choices : ['yes', 'no', 'auto'], value : 'auto')
|
|
option('with_egl', type : 'combo', choices : ['yes', 'no', 'auto'], value : 'auto')
|
|
|
|
# Common feature options
|
|
option('examples', type : 'feature', value : 'auto', yield : true)
|
|
option('tests', type : 'feature', value : 'auto', yield : true)
|
|
option('doc', type : 'feature', value : 'auto', yield: true,
|
|
description: 'Enable documentation.')
|