-
Notifications
You must be signed in to change notification settings - Fork 27
/
meson_options.txt
26 lines (22 loc) · 1.29 KB
/
meson_options.txt
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
# SPDX-License-Identifier: MIT OR LGPL-2.0-or-later
# SPDX-FileCopyrightText: 2019 Philip Chimento <philip.chimento@gmail.com>
# Features
option('readline', type: 'feature', value: 'auto',
description: 'Use readline for input in interactive shell and debugger')
option('profiler', type: 'feature', value: 'auto',
description: 'Build profiler (Linux only)')
# Flags
option('installed_tests', type: 'boolean', value: true,
description: 'Install test programs')
option('dtrace', type: 'boolean', value: false,
description: 'Include dtrace trace support')
option('systemtap', type: 'boolean', value: false,
description: 'Include systemtap trace support (requires -Ddtrace=true)')
option('bsymbolic_functions', type: 'boolean', value: true,
description: 'Link with -Bsymbolic-functions linker flag used to avoid intra-library PLT jumps, if supported; not used for Visual Studio and clang-cl builds')
option('skip_dbus_tests', type: 'boolean', value: false,
description: 'Skip tests that use a DBus session bus')
option('skip_gtk_tests', type: 'boolean', value: false,
description: 'Skip tests that need a display connection')
option('verbose_logs', type: 'boolean', value: false,
description: 'Enable extra log messages that may decrease performance (not allowed in release builds)')