X-Git-Url: http://review.tizen.org/git/?a=blobdiff_plain;f=meson_options.txt;h=4dfb5a87cdc31803cbe3dbb93e6f0dc5256221f4;hb=69ddcc175f85f92f3cb870c45d27b446c767efd0;hp=2f89562695c5076f1168ee7d2c318d9e15ba06ce;hpb=dcfb222e059d3f9c490186260eb342d64eb495ae;p=platform%2Fupstream%2Fgstreamer.git diff --git a/meson_options.txt b/meson_options.txt index 2f89562..4dfb5a8 100644 --- a/meson_options.txt +++ b/meson_options.txt @@ -1,19 +1,24 @@ 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-ptp-helper-setuid-user', type : 'string', +option('gst_debug', type : 'boolean', value : true) +option('registry', type : 'boolean', value : true) +option('tracer_hooks', type : 'boolean', value : true) +option('libunwind', type : 'boolean', value : true, + description : 'Use libunwind to generate backtraces') +option('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', +option('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', +option('ptp-helper-permissions', type : 'combo', choices : ['none', 'setuid-root', 'capabilities', 'auto'], value : 'auto') + +# Common options +option('examples', type : 'boolean', value : true, yield : true) +option('gtkdoc', type : 'boolean', value : true, yield : true, + description : 'Generate API documentation with gtk-doc') +option('introspection', type : 'boolean', value : true, yield : true, + description : 'Generate gobject-introspection bindings') +option('package-name', type : 'string', yield : true, + description : 'package name to use in plugins') +option('package-origin', type : 'string', value : 'Unknown package origin', yield : true, + description : 'package origin URL to use in plugins')