1
0
Fork 0
mirror of https://github.com/yshui/picom.git synced 2025-02-17 15:56:21 -05:00
picom/meson_options.txt

19 lines
1.1 KiB
Meson
Raw Normal View History

option('sanitize', type: 'boolean', value: false, description: 'Build with sanitizers enabled (deprecated)')
2018-10-15 00:38:21 +01:00
option('regex', type: 'boolean', value: true, description: 'Enable regex support in window conditions')
option('opengl', type: 'boolean', value: true, description: 'Enable features that require opengl (opengl backend, and opengl vsync methods)')
2019-01-28 10:58:14 +01:00
option('dbus', type: 'boolean', value: true, description: 'Enable support for D-Bus remote control')
2018-10-15 00:38:21 +01:00
option('xrescheck', type: 'boolean', value: false, description: 'Enable X resource leak checker (for debug only)')
option('compton', type: 'boolean', value: true, description: 'Install backwards compat with compton')
option('with_docs', type: 'boolean', value: false, description: 'Build documentation and man pages')
option('unittest', type: 'boolean', value: false, description: 'Enable unittests in the code')
# Experimental options
option('modularize', type: 'boolean', value: false, description: 'Build with clang\'s module system (experimental)')
option('llvm_coverage', type: 'boolean', value: false, description: 'Use LLVM source-based code coverage, instead of --coverage. Do not use with b_coverage.')