c987d3d2c9
Meson is on track to replace autotools as the build system of choice, so support it in addition to autotools. If all goes well, we'll eventually be able to drop the latter ... https://bugzilla.gnome.org/show_bug.cgi?id=783229
32 lines
618 B
Meson
32 lines
618 B
Meson
option('enable-browser-plugin',
|
|
type: 'boolean',
|
|
value: true,
|
|
description: 'Enable extensions.gnome.org browser plugin'
|
|
)
|
|
|
|
option('enable-documentation',
|
|
type: 'boolean',
|
|
value: false,
|
|
description: 'Build API reference'
|
|
)
|
|
|
|
option('enable-man',
|
|
type: 'boolean',
|
|
value: true,
|
|
description: 'Generate man pages'
|
|
)
|
|
|
|
option('enable-networkmanager',
|
|
type: 'combo',
|
|
choices: ['yes', 'no', 'auto'],
|
|
value: 'auto',
|
|
description: 'Enable NetworkManager support'
|
|
)
|
|
|
|
option('enable-systemd',
|
|
type: 'combo',
|
|
choices: ['yes', 'no', 'auto'],
|
|
value: 'auto',
|
|
description: 'Enable systemd integration'
|
|
)
|