summaryrefslogtreecommitdiff
path: root/test cases/objc
diff options
context:
space:
mode:
authorJussi Pakkanen <jpakkane@gmail.com>2013-06-01 14:06:36 +0300
committerJussi Pakkanen <jpakkane@gmail.com>2013-06-01 14:06:36 +0300
commit852b774e2e15c5f7912fa035d1d6927acd044ef7 (patch)
tree2224d246390d928d0bd7e223e8584cbc3f1a2af5 /test cases/objc
parent0d2f34654c09def726e3b1d978c45c41a4f08500 (diff)
downloadmeson-852b774e2e15c5f7912fa035d1d6927acd044ef7.tar.gz
The default value of required is true for dependencies.
Diffstat (limited to 'test cases/objc')
-rw-r--r--test cases/objc/2 nsstring/meson.build4
1 files changed, 2 insertions, 2 deletions
diff --git a/test cases/objc/2 nsstring/meson.build b/test cases/objc/2 nsstring/meson.build
index 73403266e..061500868 100644
--- a/test cases/objc/2 nsstring/meson.build
+++ b/test cases/objc/2 nsstring/meson.build
@@ -1,9 +1,9 @@
project('nsstring', 'objc')
if host.name() == 'darwin'
- dep = find_dep('appleframeworks', modules : 'foundation', required : true)
+ dep = find_dep('appleframeworks', modules : 'foundation')
else
- dep = find_dep('gnustep', required : true)
+ dep = find_dep('gnustep')
endif
exe = executable('stringprog', 'stringprog.m', deps : dep)
add_test('stringtest', exe)