meson.build 271 B

1234567891011
  1. project('gmock test', 'cpp')
  2. # Using gmock without gtest is a pain so just
  3. # don't support that then.
  4. gtest = dependency('gtest', main : true)
  5. gmock = dependency('gmock')
  6. e = executable('gmocktest', 'gmocktest.cc', dependencies : [gtest, gmock])
  7. test('gmock test', e)