mirror of
https://github.com/labwc/labwc.git
synced 2026-04-03 07:15:34 -04:00
Add a 'labnag' meson option (default: auto) to allow disabling the labnag notification daemon at build time. This is useful for embedded/headless deployments (e.g. Android) where labnag is not needed, and avoids building its wayland-client dependencies. Disable with: meson setup build -Dlabnag=disabled
9 lines
842 B
Meson
9 lines
842 B
Meson
option('man-pages', type: 'feature', value: 'auto', description: 'Generate and install man pages')
|
|
option('xwayland', type: 'feature', value: 'auto', description: 'Enable support for X11 applications')
|
|
option('svg', type: 'feature', value: 'enabled', description: 'Enable svg window buttons')
|
|
option('icon', type: 'feature', value: 'enabled', description: 'Enable window icons')
|
|
option('labnag', type: 'feature', value: 'auto', description: 'Build labnag notification daemon')
|
|
option('nls', type: 'feature', value: 'auto', description: 'Enable native language support')
|
|
option('static_analyzer', type: 'feature', value: 'disabled', description: 'Run gcc static analyzer')
|
|
option('test', type: 'feature', value: 'disabled', description: 'Run tests')
|
|
option('sections', type: 'feature', value: 'disabled', description: 'Show unused functions')
|