diff options
author | Jussi Pakkanen <jpakkane@gmail.com> | 2018-09-24 22:24:27 -0700 |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-09-24 22:24:27 -0700 |
commit | 9ceb21997b55c661388924dc86ed49f1e2b29708 (patch) | |
tree | b3435411bcf9064c7ca7e2b97cc1b1db50a51669 /test cases | |
parent | 48b6520764ad92a6ac4d830d84526e3dc64f8a22 (diff) | |
parent | 5262aac977c899fac0c24e9c8e0185b9dc28ada8 (diff) | |
download | meson-9ceb21997b55c661388924dc86ed49f1e2b29708.zip meson-9ceb21997b55c661388924dc86ed49f1e2b29708.tar.gz meson-9ceb21997b55c661388924dc86ed49f1e2b29708.tar.bz2 |
Merge pull request #4243 from nacho4d/feature/xcode-fix2
fixings for xcode backend
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 05b4037..d39527b 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 |