diff options
| author | Guillermo Ignacio Enriquez Gutierrez <ignacio@jp.ibm.com> | 2018-09-25 01:11:46 +0900 |
|---|---|---|
| committer | Guillermo Ignacio Enriquez Gutierrez <ignacio@jp.ibm.com> | 2018-09-25 01:11:46 +0900 |
| commit | 6f4ba8b2f44d9cca0c2955cd0df74ef33efc339a (patch) | |
| tree | bfdf93078bc36bdfa0ea6dbf1d720aaf164bbb8a /test cases | |
| parent | 9b7bb4aa92bc292230294929d35f3617cc48b0bf (diff) | |
| download | meson-6f4ba8b2f44d9cca0c2955cd0df74ef33efc339a.tar.gz | |
Fix Xcode backend: support for precompiled headers. Only one header per target is supported
Diffstat (limited to 'test cases')
| -rw-r--r-- | test cases/common/13 pch/meson.build | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/test cases/common/13 pch/meson.build b/test cases/common/13 pch/meson.build index 05b40370b..d39527b7b 100644 --- a/test cases/common/13 pch/meson.build +++ b/test cases/common/13 pch/meson.build @@ -2,4 +2,9 @@ project('pch test', 'c', 'cpp') subdir('c') subdir('cpp') -subdir('mixed') + +if meson.backend() == 'xcode' + warning('Xcode backend only supports one precompiled header per target. Skipping "mixed" which has various precompiled headers.') +else + subdir('mixed') +endif |
