mirror of
https://gitlab.gnome.org/GNOME/glib.git
synced 2024-11-10 11:26:16 +01:00
bfd307855b
We don't always want to build GLib with a dependency on the system's PCRE. The Autotools build allows this, and so should the Meson build.
11 lines
695 B
Meson
11 lines
695 B
Meson
option('with-docs', type : 'combo', choices : ['auto', 'yes', 'no'], value : 'auto')
|
|
option('with-man', type : 'combo', choices : ['auto', 'yes', 'no'], value : 'auto')
|
|
option('with-pcre', type : 'combo', choices : ['system', 'internal'], value : 'system')
|
|
option('enable-libmount', type : 'combo', choices : ['auto', 'yes', 'no'], value : 'yes')
|
|
option('enable-dtrace', type : 'boolean', value : false,
|
|
description : 'include tracing support for dtrace')
|
|
option('enable-systemtap', type : 'boolean', value : false,
|
|
description : 'include tracing support for systemtap')
|
|
option('tapset-install-dir', type : 'string', value : '',
|
|
description : 'path where systemtap tapsets are installed')
|