meson: add install_plugins_helper option
[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 option('install_plugins_helper', type: 'string', value: '',
18        description: 'Path of distro helper script to call to install missing plugins')
19
20 # Common options
21 option('orc', type : 'combo', choices : ['yes', 'no', 'auto'], value : 'auto', yield : true)
22 option('examples', type : 'boolean', value : true, yield : true)
23 option('gtkdoc', type : 'boolean', value : true, yield : true,
24        description : 'Build API documentation with gtk-doc')
25 option('introspection', type : 'boolean', value : true, yield : true,
26         description : 'Generate gobject-introspection bindings')
27 option('nls', type : 'boolean', value : true, yield: true,
28         description : 'Enable native language support (translations)')
29 option('package-name', type : 'string', yield : true,
30        description : 'package name to use in plugins')
31 option('package-origin', type : 'string', value : 'Unknown package origin', yield : true,
32        description : 'package origin URL to use in plugins')