gnome-shell/meson_options.txt
Florian Müllner 39e6375aff extensions-app: Move Extensions app to new subproject
The Extensions app code is now independent enough from the rest of the code
base to move it to its own subprojects, like we did for the extensions-tool.

This allows for stand-alone builds of the app, which we are about to use
for distributing it as flatpak.

https://gitlab.gnome.org/GNOME/gnome-shell/-/merge_requests/1133
2020-03-27 23:33:30 +00:00

36 lines
617 B
Meson

option('extensions_tool',
type: 'boolean',
value: true,
description: 'Build gnome-extensions CLI tool'
)
option('extensions_app',
type: 'boolean',
value: true,
description: 'Build gnome-extensions GUI application'
)
option('gtk_doc',
type: 'boolean',
value: false,
description: 'Build API reference'
)
option('man',
type: 'boolean',
value: true,
description: 'Generate man pages'
)
option('networkmanager',
type: 'boolean',
value: true,
description: 'Enable NetworkManager support'
)
option('systemd',
type: 'boolean',
value: true,
description: 'Enable systemd integration'
)