spmenu/meson_options.txt
speedie 8e257d5f6b Improve FreeBSD compatibility by moving meson.options to
meson_options.txt
Also fix a -Wsometimes-uninitialized
2023-06-26 18:09:03 +02:00

56 lines
877 B
Meson

option(
'wayland',
type : 'boolean',
value : true,
description : 'Enable Wayland support'
)
option(
'x11',
type : 'boolean',
value : true,
description : 'Enable X11 support'
)
option(
'xinerama',
type : 'boolean',
value : true,
description : 'Enable multi-monitor support using libXinerama'
)
option(
'imlib2',
type : 'boolean',
value : true,
description : 'Enable image support'
)
option(
'openssl',
type : 'boolean',
value : true,
description : 'Enable OpenSSL, used for image support'
)
option(
'xresources',
type : 'boolean',
value : true,
description : 'Enable .Xresources/xrdb support'
)
option(
'fribidi',
type : 'boolean',
value : true,
description : 'Enable Right-to-left language support'
)
option(
'libconfig',
type : 'boolean',
value : true,
description : 'Enable configuration file support'
)