X-Git-Url: http://review.tizen.org/git/?a=blobdiff_plain;f=meson_options.txt;h=e7ff7ba70cdb79899e9d6108b8cf549af67115ca;hb=ce43de86902c4e9c8ed4e9682602664cb9bce2ee;hp=9c77706cc05550c2418caaec5ae6190d41d94887;hpb=4341bd0ba38edf049344b858ce4d6069fa4c1c00;p=platform%2Fupstream%2Fgstreamer.git diff --git a/meson_options.txt b/meson_options.txt index 9c77706..e7ff7ba 100644 --- a/meson_options.txt +++ b/meson_options.txt @@ -1,23 +1,46 @@ -option('build_tools', type : 'boolean', value : true) -option('poisoning', type : 'boolean', value : false) -option('disable_gtkdoc', type : 'boolean', value : false) -option('disable_examples', type : 'boolean', value : false) -option('disable_gst_debug', type : 'boolean', value : false) -option('disable_registry', type : 'boolean', value : false) -option('library_format', type : 'combo', choices : ['shared', 'static', 'both'], value : 'shared') -option('disable_introspection', - type : 'boolean', value : false, - description : 'Whether to disable the introspection generation') -option('disable_libunwind', - type : 'boolean', value : false, - description : 'Whether to disable the usage of libunwind (to generate backtraces)') -option('with-package-name', type : 'string', +option('gst_debug', type : 'boolean', value : true) +option('gst_parse', type : 'boolean', value : true, + description: 'Enable pipeline string parser') +option('registry', type : 'boolean', value : true) +option('tracer_hooks', type : 'boolean', value : true) +option('ptp-helper-setuid-user', type : 'string', + description : 'User to switch to when installing gst-ptp-helper setuid root') +option('ptp-helper-setuid-group', type : 'string', + description : 'Group to switch to when installing gst-ptp-helper setuid root') +option('ptp-helper-permissions', type : 'combo', + choices : ['none', 'setuid-root', 'capabilities', 'auto'], value : 'auto') +option('extra-checks', type : 'boolean', value : true, description : 'Enable extra runtime checks') +option('option-parsing', type : 'boolean', value : true, + description: 'Enable command line option parsing') +option('poisoning', type : 'boolean', value : false, description : 'Enable poisoning of deallocated objects') +option('memory-alignment', type: 'combo', + choices : ['1', '2', '4', '8', '16', '32', '64', '128', '256', '512', '1024', '2048', '4096', '8192', 'malloc', 'pagesize'], + value: 'malloc') + +# Feature options +option('check', type : 'feature', value : 'auto', description : 'Build unit test libraries') +option('libunwind', type : 'feature', value : 'auto', description : 'Use libunwind to generate backtraces') +option('libdw', type : 'feature', value : 'auto', description : 'Use libdw to generate better backtraces from libunwind') +option('dbghelp', type : 'feature', value : 'auto', description : 'Use dbghelp to generate backtraces') +option('bash-completion', type : 'feature', value : 'auto', description : 'Install bash completion files') + +# Common feature options +option('examples', type : 'feature', value : 'auto', yield : true) +option('tests', type : 'feature', value : 'auto', yield : true) +option('benchmarks', type : 'feature', value : 'auto', yield : true) +option('tools', type : 'feature', value : 'auto', yield : true) +option('gtk_doc', type : 'feature', value : 'auto', yield : true, description : 'Generate API documentation with gtk-doc') +option('introspection', type : 'feature', value : 'auto', yield : true, description : 'Generate gobject-introspection bindings') +option('nls', type : 'feature', value : 'auto', yield: true, description : 'Enable native language support (translations)') +option('gobject-cast-checks', type : 'feature', value : 'auto', yield : true, + description: 'Enable run-time GObject cast checks (auto = enabled for development, disabled for stable releases)') +option('glib-asserts', type : 'feature', value : 'enabled', yield : true, + description: 'Enable GLib assertion (auto = enabled for development, disabled for stable releases)') +option('glib-checks', type : 'feature', value : 'enabled', yield : true, + description: 'Enable GLib checks such as API guards (auto = enabled for development, disabled for stable releases)') + +# Common options +option('package-name', type : 'string', yield : true, description : 'package name to use in plugins') -option('with-package-origin', type : 'string', value : 'Unknown package origin', +option('package-origin', type : 'string', value : 'Unknown package origin', yield : true, description : 'package origin URL to use in plugins') -option('with-ptp-helper-setuid-user', type : 'string', - description : 'User to switch to when installing gst-ptp-helper setuid root') -option('with-ptp-helper-setuid-group', type : 'string', - description : 'Group to switch to when installing gst-ptp-helper setuid root') -option('with-ptp-helper-permissions', type : 'combo', - choices : ['none', 'setuid-root', 'capabilities', 'auto'], value : 'auto')