mirror of
https://github.com/labwc/labwc.git
synced 2025-10-28 05:40:22 -04:00
The default `titleLayout` is updated to `icon:iconify,max,close` which replaces the window menu button with the window icon. When the icon file is not found or could not be loaded, the window menu icon as before is shown. The icon theme can be selected with `<theme><icon>`. This commit adds libsfdo as an optional dependency. `-Dicon=disabled` can be passsed to `meson setup` command in order to disable window icon, in which case the window icon is always replaced with a window menu button.
7 lines
651 B
Meson
7 lines
651 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('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')
|