parent
d4284aae89
commit
11e81618d2
8 changed files with 13 additions and 13 deletions
@ -1,6 +1,6 @@ |
||||
project('gtest', 'cxx') |
||||
|
||||
gtest = find_dep('gtest') |
||||
gtest = dependency('gtest') |
||||
|
||||
e = executable('testprog', 'test.cc', deps : gtest) |
||||
test('gtest test', e) |
||||
|
@ -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) |
||||
|
Loading…
Reference in new issue