1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
option('config_file', type: 'boolean', value: true, description: 'Enable config file support')
option('regex', type: 'boolean', value: true, description: 'Enable regex support in window conditions')
option('vsync_drm', type: 'boolean', value: false, description: 'Enable support for using drm for vsync')
option('opengl', type: 'boolean', value: true, description: 'Enable features that require opengl (opengl backend, and opengl vsync methods)')
option('dbus', type: 'boolean', value: true, description: 'Enable support for D-Bus remote control')
option('xrescheck', type: 'boolean', value: false, description: 'Enable X resource leak checker (for debug only)')
option('with_docs', type: 'boolean', value: true, description: 'Build documentation and man pages')
option('update_checks', type: 'boolean', value: false, description: 'Gives access to --check-for-updates option')
option('unittest', type: 'boolean', value: false, description: 'Enable unittests in the code')
|