mirror of
https://codeberg.org/dnkl/yambar.git
synced 2025-04-22 20:25:39 +02:00
Without this change yambar can't be installed/used without libmpdclient even for people who do not use MPD. Let's make this optional. We could put the optional module summary in the module meson.build but we'd have to move summary() in main meson.build so that they appear in proper order.
10 lines
485 B
Meson
10 lines
485 B
Meson
option(
|
|
'backend-x11', type: 'feature', value: 'enabled', description: 'XCB (X11) backend')
|
|
option(
|
|
'backend-wayland', type: 'feature', value: 'enabled', description: 'Wayland backend')
|
|
option(
|
|
'core-plugins-as-shared-libraries', type: 'boolean', value: false,
|
|
description: 'Compiles modules, particles and decorations as shared libraries, which are loaded on-demand')
|
|
option(
|
|
'plugin-mpd', type: 'feature', value: 'auto',
|
|
description: 'Music Player Daemon (MPD) support')
|