1
0
mirror of https://github.com/GNOME/gedit synced 2024-07-02 15:58:48 +00:00
gedit/meson_options.txt
Sébastien Wilmet 2d68ee477b build: change a meson option to buggy_plugins
The externaltools plugin must *not* be enabled on production systems.
2024-06-22 05:40:22 +02:00

40 lines
1.2 KiB
Meson

option(
'gtk_doc',
type: 'boolean', value: true,
description: 'Build API reference for plugins (requires gtk-doc)'
)
# If this option is kept to false, then it's an automatic behavior: if the
# third party program is found, then the test is defined.
# Setting this option to true will stop the configure phase with a hard error
# if a third party program is not found and is required to define a test.
option(
'require_all_tests',
type: 'boolean', value: false,
description: 'Require that all tests can be run, even those that depend on third party programs'
)
# For developers. Disabling the option speeds up the install.
option(
'user_documentation',
type: 'boolean', value: true,
description: 'Build user documentation'
)
option(
'buggy_plugins',
type: 'boolean', value: false,
description: 'Enable plugins that are known to be buggy and can crash the application'
)
# Whether to have a GtkHeaderBar (instead of the default window titlebar).
# 'auto' will choose a value depending on the platform.
# 'yes' and 'no' permit to force a certain value (useful for testing purposes).
option(
'headerbar',
type: 'combo',
choices: ['yes', 'no', 'auto'],
value: 'auto',
description: 'Have a GtkHeaderBar'
)