2017-05-20 13:58:37 +00:00
option ( 'x264_libraries' , type : 'string' , value : '' ,
description : 'Colon separated list of additional x264 library paths, e.g. for 10-bit version' )
2018-05-05 14:02:00 +00:00
2018-07-27 13:59:01 +00:00
# Feature options for plugins without external deps
option ( 'asfdemux' , type : 'feature' , value : 'auto' )
option ( 'dvdlpcmdec' , type : 'feature' , value : 'auto' )
option ( 'dvdsub' , type : 'feature' , value : 'auto' )
option ( 'realmedia' , type : 'feature' , value : 'auto' )
# Feature options for plugins that need external deps
2021-09-18 23:55:34 +00:00
option ( 'a52dec' , type : 'feature' , value : 'auto' , description : 'Dolby Digital (AC-3) audio decoder plugin based on liba52 (GPL - only built if gpl option is also enabled!)' )
option ( 'cdio' , type : 'feature' , value : 'auto' , description : 'CD audio source plugin based on libcdio (GPL - only built if gpl option is also enabled!)' )
option ( 'dvdread' , type : 'feature' , value : 'auto' , description : 'DVD video source plugin based on libdvdread (GPL - only built if gpl option is also enabled!)' )
option ( 'mpeg2dec' , type : 'feature' , value : 'auto' , description : 'MPEG 2 video decoder plugin based on libmpeg2 (GPL - only built if gpl option is also enabled!)' )
option ( 'sidplay' , type : 'feature' , value : 'auto' , description : 'Commodore 64 audio decoder plugin based on libsidplay (GPL - only built if gpl option is also enabled!)' )
option ( 'x264' , type : 'feature' , value : 'auto' , description : 'H.264 video encoder plugin based on libx264 (GPL - only built if gpl option is also enabled!)' )
# License-related feature options
2021-10-20 23:33:06 +00:00
option ( 'gpl' , type : 'feature' , value : 'disabled' , yield : true ,
2021-09-18 23:55:34 +00:00
description : 'Allow build plugins that have GPL-licensed dependencies' )
2018-07-27 13:59:01 +00:00
2018-08-18 20:15:23 +00:00
# Common feature options
2018-07-25 11:47:21 +00:00
option ( 'nls' , type : 'feature' , value : 'auto' , yield : true ,
description : 'Enable native language support (translations)' )
2018-07-27 13:59:01 +00:00
option ( 'orc' , type : 'feature' , value : 'auto' , yield : true )
2018-08-18 20:22:42 +00:00
option ( 'tests' , type : 'feature' , value : 'auto' , yield : true )
2018-08-18 20:15:23 +00:00
# Common options
2018-05-05 14:02:00 +00:00
option ( 'package-name' , type : 'string' , yield : true ,
2017-05-20 13:58:37 +00:00
description : 'package name to use in plugins' )
2018-05-05 14:02:00 +00:00
option ( 'package-origin' , type : 'string' , value : 'Unknown package origin' , yield : true ,
2017-05-20 13:58:37 +00:00
description : 'package origin URL to use in plugins' )
2018-10-22 09:47:37 +00:00
option ( 'doc' , type : 'feature' , value : 'auto' , yield : true ,
2021-09-18 23:55:34 +00:00
description : 'Enable documentation.' )
2020-04-08 14:40:42 +00:00
option ( 'glib_debug' , type : 'feature' , value : 'auto' , yield : true , description : 'Enable GLib debug infrastructure (see docs/macros.txt)' )
option ( 'glib_assert' , type : 'boolean' , value : true , yield : true , description : 'Enable GLib assertion (see docs/macros.txt)' ,
deprecated : { 'enabled' : 'true' , 'disabled' : 'false' , 'auto' : 'false' } ,
)
option ( 'glib_checks' , type : 'boolean' , value : true , yield : true , description : 'Enable GLib checks such as API guards (see docs/macros.txt)' ,
deprecated : { 'enabled' : 'true' , 'disabled' : 'false' , 'auto' : 'false' } ,
)
# Deprecated, kept for backward compat
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)' ,
deprecated : 'glib_debug' )
option ( 'glib-asserts' , type : 'feature' , value : 'enabled' , yield : true ,
description : 'Enable GLib assertion (auto = enabled for development, disabled for stable releases)' ,
deprecated : 'glib_assert' )
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)' ,
deprecated : 'glib_checks' )