diff options
author | Wu Xiaotian <[email protected]> | 2020-02-23 21:52:22 +0800 |
---|---|---|
committer | raveit65 <[email protected]> | 2020-03-11 09:38:02 +0100 |
commit | 3d65c8b7f57ab6b9b99e39303e069c40eee91502 (patch) | |
tree | 774693cc999f740427d608de87990d9014aec1ef /meson_options.txt | |
parent | 1748fcb3c74836c8f59453f8a1689bb7c612f035 (diff) | |
download | marco-3d65c8b7f57ab6b9b99e39303e069c40eee91502.tar.bz2 marco-3d65c8b7f57ab6b9b99e39303e069c40eee91502.tar.xz |
meson: improve
Diffstat (limited to 'meson_options.txt')
-rw-r--r-- | meson_options.txt | 48 |
1 files changed, 24 insertions, 24 deletions
diff --git a/meson_options.txt b/meson_options.txt index 8aac9850..c57ba6ec 100644 --- a/meson_options.txt +++ b/meson_options.txt @@ -1,31 +1,31 @@ -option('disable-verbose-mode', - type: 'boolean', value: true, - description: 'disable marco\'s ability to do verbose logging, for embedded/size-sensitive custom builds') - -option('disable-sm', +option('verbose-mode', type: 'boolean', value: false, - description: 'disable marco\'s session management support, for embedded/size-sensitive custom non-MATE builds') + description: 'verbose logging, for embedded/size-sensitive custom builds') -option('disable-startup-notification', - type: 'boolean', value: false, - description: 'disable marco\'s startup notification support, for embedded/size-sensitive custom non-MATE builds') +option('sm', + type: 'boolean', value: true, + description: 'session management support, for embedded/size-sensitive custom non-MATE builds') -option('disable-compositor', - type: 'boolean', value: false, - description: 'disable marco\'s compositing manager') +option('startup-notification', + type: 'boolean', value: true, + description: 'startup notification support, for embedded/size-sensitive custom non-MATE builds') -option('disable-xsync', - type: 'boolean', value: false, - description: 'disable marco\'s use of the XSync extension') +option('compositor', + type: 'boolean', value: true, + description: 'compositing manager') -option('disable-render', - type: 'boolean', value: false, - description: 'disable marco\'s use of the RENDER extension') +option('xsync', + type: 'boolean', value: true, + description: 'use of the XSync extension') -option('disable-shape', - type: 'boolean', value: false, - description: 'disable marco\'s use of the shaped window extension') +option('render', + type: 'boolean', value: true, + description: 'use the RENDER extension') -option('disable-xinerama', - type: 'boolean', value: false, - description: 'disable marco\'s use of the Xinerama extension') +option('shape', + type: 'boolean', value: true, + description: 'use the shaped window extension') + +option('xinerama', + type: 'boolean', value: true, + description: 'use the Xinerama extension') |