summaryrefslogtreecommitdiff
path: root/test cases/objc
diff options
context:
space:
mode:
authorJussi Pakkanen <jpakkane@gmail.com>2013-06-02 14:06:43 +0300
committerJussi Pakkanen <jpakkane@gmail.com>2013-06-02 14:06:43 +0300
commit11e81618d20ee7f03cb61248cc0587122fa563bb (patch)
treea95d7e018e0f4ab3fe1ef424a3c2cf568cb0c37d /test cases/objc
parentd4284aae89abc0e6c09cd101f40cbf53e26d8ac4 (diff)
downloadmeson-11e81618d20ee7f03cb61248cc0587122fa563bb.tar.gz
Renamed find_dep to dependency.
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 a55413786..600a76005 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')
+ dep = dependency('appleframeworks', modules : 'foundation')
else
- dep = find_dep('gnustep')
+ dep = dependency('gnustep')
endif
exe = executable('stringprog', 'stringprog.m', deps : dep)
test('stringtest', exe)