summaryrefslogtreecommitdiff
path: root/test cases/objc
diff options
context:
space:
mode:
authorJussi Pakkanen <jpakkane@gmail.com>2019-04-28 23:47:15 +0300
committerJussi Pakkanen <jpakkane@gmail.com>2019-05-02 21:37:57 +0300
commit7ac03f62646d40b31b9c1ef1b4f6778c788ec90a (patch)
treeac7220623ed8e98efb16ca94cd01cacaf7b1f715 /test cases/objc
parent4c2617a9c6fd02e3f8831b7de8755380ac4bcb16 (diff)
downloadmeson-7ac03f62646d40b31b9c1ef1b4f6778c788ec90a.tar.gz
Non-required appleframework deps should not be an error. Closes #5295.
Diffstat (limited to 'test cases/objc')
-rw-r--r--test cases/objc/2 nsstring/meson.build3
1 files changed, 3 insertions, 0 deletions
diff --git a/test cases/objc/2 nsstring/meson.build b/test cases/objc/2 nsstring/meson.build
index 7f2483f4c..94d2cf18a 100644
--- a/test cases/objc/2 nsstring/meson.build
+++ b/test cases/objc/2 nsstring/meson.build
@@ -15,3 +15,6 @@ else
endif
exe = executable('stringprog', 'stringprog.m', dependencies : dep)
test('stringtest', exe)
+
+# Ensure that a non-required dep that is not found does not cause an error
+dependency('appleframeworks', modules: 'nonexisting', required: false)