aboutsummaryrefslogtreecommitdiff
path: root/test cases
diff options
context:
space:
mode:
authorGuillermo Ignacio Enriquez Gutierrez <ignacio@jp.ibm.com>2018-09-25 01:11:46 +0900
committerGuillermo Ignacio Enriquez Gutierrez <ignacio@jp.ibm.com>2018-09-25 01:11:46 +0900
commit6f4ba8b2f44d9cca0c2955cd0df74ef33efc339a (patch)
treebfdf93078bc36bdfa0ea6dbf1d720aaf164bbb8a /test cases
parent9b7bb4aa92bc292230294929d35f3617cc48b0bf (diff)
downloadmeson-6f4ba8b2f44d9cca0c2955cd0df74ef33efc339a.zip
meson-6f4ba8b2f44d9cca0c2955cd0df74ef33efc339a.tar.gz
meson-6f4ba8b2f44d9cca0c2955cd0df74ef33efc339a.tar.bz2
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.build7
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