aboutsummaryrefslogtreecommitdiff
path: root/test cases/frameworks/2 gtest/meson.build
blob: ea3ef48e82eb9120a3317815c3904811ced7c912 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
# on Ubuntu this test requires libgtest-dev
project('gtest', 'cpp')

gtest = dependency('gtest', main : true, required : false)
if not gtest.found()
  error('MESON_SKIP_TEST: gtest not installed.')
endif
gtest_nomain = dependency('gtest', main : false, method : 'system')

e = executable('testprog', 'test.cc', dependencies : gtest)
test('gtest test', e, protocol : 'gtest')

e = executable('testprog_nomain', 'test_nomain.cc', dependencies : gtest_nomain)
test('gtest nomain test', e, protocol : 'gtest')