diff options
| author | Jussi Pakkanen <jpakkane@gmail.com> | 2013-06-02 14:06:43 +0300 |
|---|---|---|
| committer | Jussi Pakkanen <jpakkane@gmail.com> | 2013-06-02 14:06:43 +0300 |
| commit | 11e81618d20ee7f03cb61248cc0587122fa563bb (patch) | |
| tree | a95d7e018e0f4ab3fe1ef424a3c2cf568cb0c37d /test cases/objc | |
| parent | d4284aae89abc0e6c09cd101f40cbf53e26d8ac4 (diff) | |
| download | meson-11e81618d20ee7f03cb61248cc0587122fa563bb.tar.gz | |
Renamed find_dep to dependency.
Diffstat (limited to 'test cases/objc')
| -rw-r--r-- | test cases/objc/2 nsstring/meson.build | 4 |
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) |
