39e6375aff
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
36 lines
617 B
Meson
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'
|
|
)
|