diff options
Diffstat (limited to 'test/meson.build')
| -rw-r--r-- | test/meson.build | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/test/meson.build b/test/meson.build new file mode 100644 index 0000000..b918d5d --- /dev/null +++ b/test/meson.build @@ -0,0 +1,14 @@ +gtest = dependency('gtest', main: true, disabler: true, required: build_tests) +gmock = dependency('gmock', disabler: true, required: build_tests) + +tests = [ + 'signal', +] + +foreach t : tests + test(t, executable(t.underscorify(), t + '.cpp', + include_directories: includes, + implicit_include_directories: false, + link_with: stdplus, + dependencies: [gtest, gmock])) +endforeach |

