summaryrefslogtreecommitdiff
path: root/meson_options.txt
diff options
context:
space:
mode:
authorEmmanuele Bassi <ebassi@gnome.org>2017-07-21 14:03:05 +0100
committerEmmanuele Bassi <ebassi@gnome.org>2017-07-21 14:04:49 +0100
commitbfd307855bd21108c98d72bf4d85a6c632396cde (patch)
tree7f2de6ee97a58ba04a42aa4f2f488c032733d6b7 /meson_options.txt
parent8962736ba9deb8f6a6b143fce1b6fd692ffaaa21 (diff)
downloadglib-bfd307855bd21108c98d72bf4d85a6c632396cde.tar.gz
meson: Allow toggling internal/system PCRE dependency
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.
Diffstat (limited to 'meson_options.txt')
-rw-r--r--meson_options.txt1
1 files changed, 1 insertions, 0 deletions
diff --git a/meson_options.txt b/meson_options.txt
index f70d54a43..1811e8bbc 100644
--- a/meson_options.txt
+++ b/meson_options.txt
@@ -1,5 +1,6 @@
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')