mirror of
https://github.com/ZoiteChat/zoitechat.git
synced 2026-03-10 16:00:18 +00:00
Added a new Meson feature option appindicator (default auto) so this backend is explicitly controllable.
Updated GTK Meson logic to honor -Dappindicator=... and fail fast if enabled is requested but neither ayatana-appindicator3-0.1 nor appindicator3-0.1 is found (prevents silently shipping a build without AppIndicator tray support).
Updated AppImage CI configure flags to force -Dappindicator=enabled, which should prevent AppImage artifacts from lacking StatusNotifier/AppIndicator tray support in XFCE-like environments.
71 lines
2.4 KiB
Meson
71 lines
2.4 KiB
Meson
# Applications
|
|
option('gtk-frontend', type: 'boolean',
|
|
description: 'Main graphical interface'
|
|
)
|
|
option('gtk3', type: 'boolean', value: false,
|
|
description: 'Build GTK frontend against GTK 3'
|
|
)
|
|
option('text-frontend', type: 'boolean', value: false,
|
|
description: 'Text interface (not generally useful)'
|
|
)
|
|
|
|
# Features
|
|
option('tls', type: 'feature', value: 'enabled',
|
|
description: 'Support for TLS connections, requires openssl'
|
|
)
|
|
option('plugin', type: 'boolean',
|
|
description: 'Support for loadable plugins'
|
|
)
|
|
option('dbus', type: 'feature', value: 'auto',
|
|
description: 'Support used for single-instance and scripting interface, Unix only'
|
|
)
|
|
option('libcanberra', type: 'feature', value: 'auto',
|
|
description: 'Support for sound alerts, Unix only'
|
|
)
|
|
option('appindicator', type: 'feature', value: 'auto',
|
|
description: 'Use Ayatana/AppIndicator-based tray backend when GTK3 is enabled'
|
|
)
|
|
|
|
# Install options
|
|
option('dbus-service-use-appid', type: 'boolean', value: false,
|
|
description: 'Rename dbus service to match app-id, required for Flatpak'
|
|
)
|
|
option('install-appdata', type: 'boolean',
|
|
description: 'Install appdata files for app stores'
|
|
)
|
|
option('install-plugin-metainfo', type: 'boolean', value: false,
|
|
description: 'Installs metainfo files for enabled plugins, useful when distros create split packages'
|
|
)
|
|
|
|
# Plugins
|
|
option('with-checksum', type: 'boolean',
|
|
description: 'DCC checksum plugin'
|
|
)
|
|
option('with-exec', type: 'boolean',
|
|
description: '/exec plugin, Windows only'
|
|
)
|
|
option('with-fishlim', type: 'boolean',
|
|
description: 'Fish encryption plugin, requires openssl'
|
|
)
|
|
option('with-lua', type: 'string', value: 'luajit',
|
|
description: 'Lua scripting plugin, value is pkg-config name to use or "false"'
|
|
)
|
|
option('with-perl', type: 'string', value: 'perl',
|
|
description: 'Perl scripting plugin, value is path to perl executable or "false"'
|
|
)
|
|
option('with-python', type: 'string', value: 'python3',
|
|
description: 'Python scripting plugin. value is pkg-config name to use or "false"'
|
|
)
|
|
option('with-sysinfo', type: 'boolean',
|
|
description: 'System information plugin, requires libpci on Unix'
|
|
)
|
|
option('with-upd', type: 'boolean',
|
|
description: 'Update plugin, Windows only'
|
|
)
|
|
option('with-winamp', type: 'boolean',
|
|
description: 'Winamp plugin, Windows only'
|
|
)
|
|
option('with-perl-legacy-api', type: 'boolean', value: false,
|
|
description: 'Enables the legacy IRC perl module for compatibility with old scripts'
|
|
)
|