meson: Update option names to omit disable_ and with- prefixes
[platform/upstream/gstreamer.git] / meson_options.txt
1 option('audioresample_format', type : 'combo',
2        choices : ['int', 'float', 'auto'], value : 'auto')
3 option('gl_api', type : 'array', choices : ['opengl', 'gles2', 'auto'], value : ['auto'],
4        description : 'A comma separated list of opengl APIs to enable building against')
5 option('gl_platform', type : 'array',
6        choices : ['glx', 'egl', 'cgl', 'wgl', 'eagl', 'auto'], value : ['auto'],
7        description : 'A comma separated list of opengl platforms to enable building against')
8 option('gl_winsys', type : 'array',
9        choices : ['x11', 'wayland', 'win32', 'cocoa', 'dispmanx', 'auto'], value : ['auto'],
10        description : 'A comma separated list of opengl windows systems to enable building against. Supported values are x11, wayland, win32, cocoa, and dispmanx')
11 option('egl_module_name', type : 'string', value : '',
12        description : 'The file to pass to g_module_open to open the libEGL library (default: libEGL)')
13 option('opengl_module_name', type : 'string', value : '',
14        description : 'The file to pass to g_module_open to open the libGL library (default: libGL)')
15 option('gles2_module_name', type : 'string', value : '',
16        description : 'The file to pass to g_module_open to open the libGLESv2 library (default: libGLESv2)')
17
18 # Common options
19 option('orc', type : 'combo', choices : ['yes', 'no', 'auto'], value : 'auto', yield : true)
20 option('examples', type : 'boolean', value : true, yield : true)
21 option('gtkdoc', type : 'boolean', value : true, yield : true,
22        description : 'Build API documentation with gtk-doc')
23 option('introspection', type : 'boolean', value : true, yield : true,
24         description : 'Generate gobject-introspection bindings')
25 option('package-name', type : 'string', yield : true,
26        description : 'package name to use in plugins')
27 option('package-origin', type : 'string', value : 'Unknown package origin', yield : true,
28        description : 'package origin URL to use in plugins')