[meson] Set the default wrap mode to nofallback

This, I believe, will prevent any automatic use of subprojects be
default and will only look for dependencies on the system.
https://mesonbuild.com/Subprojects.html#commandline-options
This commit is contained in:
Khaled Hosny 2020-07-06 14:48:37 +02:00 committed by Ebrahim Byagowi
parent 52199349aa
commit dc684103d4
1 changed files with 1 additions and 1 deletions

View File

@ -1,7 +1,7 @@
project('harfbuzz', 'c', 'cpp',
meson_version: '>= 0.53.0',
version: '2.6.8',
default_options: ['cpp_std=c++11'],
default_options: ['cpp_std=c++11', 'wrap_mode=nofallback'],
)
warning('Meson is not our main build system for building *nix packages yet we encourage packagers to test it and give us feedback about it.')