meson/test cases/frameworks/3 gmock/meson.build

11 lines
250 B
Meson

project('gmock test', 'cxx')
# Using gmock without gtest is a pain so just
# don't support that then.
gtest = find_dep('gtest')
gmock = find_dep('gmock')
e = executable('gmocktest', 'gmocktest.cc', deps : [gtest, gmock])
add_test('gmock test', e)