10c602fe95
Meson options are typed, so the prefix isn't necessary, and indeed looks odd when used to disable the option: -Denable_foo=false Also replace underscores with dashes, which is the preferred meson style. https://bugzilla.gnome.org/show_bug.cgi?id=791007
32 lines
577 B
Meson
32 lines
577 B
Meson
option('browser_plugin',
|
|
type: 'boolean',
|
|
value: true,
|
|
description: 'Enable extensions.gnome.org browser plugin'
|
|
)
|
|
|
|
option('gtk_doc',
|
|
type: 'boolean',
|
|
value: false,
|
|
description: 'Build API reference'
|
|
)
|
|
|
|
option('man',
|
|
type: 'boolean',
|
|
value: true,
|
|
description: 'Generate man pages'
|
|
)
|
|
|
|
option('networkmanager',
|
|
type: 'combo',
|
|
choices: ['yes', 'no', 'auto'],
|
|
value: 'auto',
|
|
description: 'Enable NetworkManager support'
|
|
)
|
|
|
|
option('systemd',
|
|
type: 'combo',
|
|
choices: ['yes', 'no', 'auto'],
|
|
value: 'auto',
|
|
description: 'Enable systemd integration'
|
|
)
|