Patrick Williams | eb88701 | 2023-07-21 10:00:49 -0500 | [diff] [blame] | 1 | gtest_dep = dependency('gtest', main: true) |
2 | gmock_dep = dependency('gmock') | ||||
3 | |||||
4 | test( | ||||
5 | 'test_ethstats', | ||||
6 | executable( | ||||
7 | 'test-ethstats', | ||||
8 | 'ethstats_unittest.cpp', | ||||
9 | include_directories: [ | ||||
10 | '..', | ||||
11 | ], | ||||
12 | dependencies: [ | ||||
13 | ethstatscmd_common_dep, | ||||
14 | gmock_dep, | ||||
15 | gtest_dep, | ||||
16 | ipmid_dep, | ||||
17 | ], | ||||
18 | ), | ||||
19 | ) |