From 3d65c8b7f57ab6b9b99e39303e069c40eee91502 Mon Sep 17 00:00:00 2001 From: Wu Xiaotian Date: Sun, 23 Feb 2020 21:52:22 +0800 Subject: meson: improve --- meson_options.txt | 48 ++++++++++++++++++++++++------------------------ 1 file changed, 24 insertions(+), 24 deletions(-) (limited to 'meson_options.txt') 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') -- cgit v1.2.1