blob: b57140cc2133e3ec5a4b753af263030f3f011694 [file] [log] [blame]
William A. Kennington III0b3c3892021-04-20 16:00:55 -07001gtest = dependency('gtest', main: true, disabler: true, required: get_option('tests'))
2gmock = dependency('gmock', disabler: true, required: get_option('tests'))
William A. Kennington IIIb9337712019-01-15 18:27:13 -08003
4tests = [
5 'watchdog',
6]
7
8foreach t : tests
William A. Kennington III0b3c3892021-04-20 16:00:55 -07009 test(
10 t,
11 executable(
12 t.underscorify(),
13 t + '.cpp',
14 implicit_include_directories: false,
15 link_with: libwatchdog,
16 dependencies: [gtest, gmock]))
William A. Kennington IIIb9337712019-01-15 18:27:13 -080017endforeach