From e00df9046defea68ca449635d9ce3e849bc70807 Mon Sep 17 00:00:00 2001 From: Daniel Mensinger Date: Tue, 13 Oct 2020 16:10:29 +0200 Subject: include_type: honor include_type in dependency fallbacks (fixes #7503) --- test cases/common/226 include_type dependency/meson.build | 3 +++ 1 file changed, 3 insertions(+) (limited to 'test cases/common') diff --git a/test cases/common/226 include_type dependency/meson.build b/test cases/common/226 include_type dependency/meson.build index d17e920..fe21dbb 100644 --- a/test cases/common/226 include_type dependency/meson.build +++ b/test cases/common/226 include_type dependency/meson.build @@ -33,6 +33,9 @@ sp_dep_sys = sp_dep.as_system('system') assert(sp_dep_sys.include_type() == 'system', 'changing include_type works') assert(sp_dep.include_type() == 'preserve', 'as_system must not mutate the original object') +fallback = dependency('sdffgagf_does_not_exist', include_type: 'system', fallback: ['subDep', 'subDep_dep']) +assert(fallback.include_type() == 'system', 'include_type works with dependency fallback') + # Check that PCH works with `include_type : 'system'` See https://github.com/mesonbuild/meson/issues/7167 main_exe = executable('main_exe', 'main.cpp', cpp_pch: 'pch/test.hpp', dependencies: boost_dep) test('main_test', main_exe) -- cgit v1.1