The Meson Build System
http://mesonbuild.com/
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
9 lines
291 B
9 lines
291 B
5 years ago
|
project('gtest dependency with version', ['c', 'cpp'])
|
||
|
|
||
|
if not dependency('gtest', method: 'system', required: false).found()
|
||
|
error('MESON_SKIP_TEST test requires gtest')
|
||
|
endif
|
||
|
|
||
|
# discovering gtest version is not yet implemented
|
||
|
dep = dependency('gtest', method: 'system', version: '>0')
|