Per discussion in https://gitlab.gnome.org/GNOME/gnome-control-center/-/merge_requests/1940 we agreed that the number of deprecated warnings is cluttering significantly our build logs and making it hard for new contributors to spot new warnings that their code changes introduce. For now we decided that the default value for deprecated-declarations is DISABLED.
11 lines
1.1 KiB
Meson
11 lines
1.1 KiB
Meson
option('deprecated-declarations', type: 'feature', value: 'disabled', description: 'build with deprecated declaration warnings')
|
|
option('documentation', type: 'boolean', value: false, description: 'build documentation')
|
|
option('ibus', type: 'boolean', value: true, description: 'build with IBus support')
|
|
option('privileged_group', type: 'string', value: 'wheel', description: 'name of group that has elevated permissions')
|
|
option('snap', type: 'boolean', value: true, description: 'build with Snap support')
|
|
option('tests', type: 'boolean', value: true, description: 'build tests')
|
|
option('wayland', type: 'boolean', value: true, description: 'build with Wayland support')
|
|
option('profile', type: 'combo', choices: ['default','development'], value: 'default')
|
|
option('malcontent', type: 'boolean', value: false, description: 'build with malcontent support')
|
|
option('distributor_logo', type: 'string', description: 'absolute path to distributor logo for the About panel')
|
|
option('dark_mode_distributor_logo', type: 'string', description: 'absolute path to distributor logo dark mode variant')
|