diff options
| author | Dylan Baker <dylan@pnwbakers.com> | 2022-06-17 11:23:17 -0700 |
|---|---|---|
| committer | Dylan Baker <dylan@pnwbakers.com> | 2022-08-17 13:44:08 -0700 |
| commit | fd9ee31d148f8e7e8ead729bddc14eb3095779ce (patch) | |
| tree | db791fa9fb6d94740bff7ee308ee9bca4856a96f /test cases | |
| parent | 6d50fadde5bc0654bfe4fbd0cc911ec30b0ea47a (diff) | |
| download | meson-fd9ee31d148f8e7e8ead729bddc14eb3095779ce.tar.gz | |
tests/common/215: Save some time by only checking pkg-config
Diffstat (limited to 'test cases')
| -rw-r--r-- | test cases/common/215 source set realistic example/meson.build | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/test cases/common/215 source set realistic example/meson.build b/test cases/common/215 source set realistic example/meson.build index 7707964c2..3ff8f12cd 100644 --- a/test cases/common/215 source set realistic example/meson.build +++ b/test cases/common/215 source set realistic example/meson.build @@ -13,7 +13,7 @@ keyval = import('keyval') zlib = declare_dependency(compile_args: '-DZLIB=1') another = declare_dependency(compile_args: '-DANOTHER=1') -not_found = dependency('not-found', required: false) +not_found = dependency('not-found', required: false, method : 'pkg-config') common = ss.source_set() specific = ss.source_set() |
