diff options
author | Niklas Guertler <profclonk@gmail.com> | 2020-09-09 11:02:21 +0200 |
---|---|---|
committer | Niklas Guertler <profclonk@gmail.com> | 2020-09-09 11:02:21 +0200 |
commit | 8485a34055837fe2b8f58814c0bd3c25f97d610b (patch) | |
tree | c07c8b83c955c620236682b6de1c8ba4b8ed4570 /meson_options.txt | |
parent | 25b057fa2ac6ea53b050e80dcc11cc9ed335b261 (diff) | |
download | pango-8485a34055837fe2b8f58814c0bd3c25f97d610b.tar.gz |
Make dependencies to libthai, cairo and xft optional.
Added meson features for disabling the dependencies libthai, cairo and xft such that they won't be used even if present on the system. Changed meson dependencies for some tests accordingly.
Diffstat (limited to 'meson_options.txt')
-rw-r--r-- | meson_options.txt | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/meson_options.txt b/meson_options.txt index b0395b5e..437ba149 100644 --- a/meson_options.txt +++ b/meson_options.txt @@ -18,3 +18,15 @@ option('sysprof', type : 'feature', value : 'disabled', description : 'include tracing support for sysprof') +option('libthai', + type : 'feature', + value : 'auto', + description : 'Build with libthai support') +option('cairo', + type : 'feature', + value : 'auto', + description : 'Build with cairo support') +option('xft', + type : 'feature', + value : 'auto', + description : 'Build with xft support') |