parent
0d2f34654c
commit
852b774e2e
8 changed files with 17 additions and 11 deletions
@ -1,6 +1,6 @@ |
||||
project('gtest', 'cxx') |
||||
|
||||
gtest = find_dep('gtest', required : true) |
||||
gtest = find_dep('gtest') |
||||
|
||||
e = executable('testprog', 'test.cc', deps : gtest) |
||||
add_test('gtest test', e) |
||||
|
@ -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) |
||||
|
Loading…
Reference in new issue