summaryrefslogtreecommitdiffstats
path: root/test cases/frameworks/3 gmock/meson.build
blob: 58591aeba5e03098b564b71693e3e777893e411b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
project('gmock test', 'cpp')

# Using gmock without gtest is a pain so just
# don't support that then.

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

e = executable('gmocktest', 'gmocktest.cc', dependencies : [gtest, gmock])
test('gmock test', e)