kasunath | 7ffd30a | 2022-05-10 18:11:34 -0700 | [diff] [blame] | 1 | gtest = dependency('gtest', main: true, disabler: true, required: get_option('tests')) |
| 2 | gmock = dependency('gmock', disabler: true, required: get_option('tests')) |
| 3 | |
| 4 | if not gtest.found() or not gmock.found() |
| 5 | gtest_proj = import('cmake').subproject('googletest', required: false) |
| 6 | if gtest_proj.found() |
| 7 | gtest = declare_dependency( |
| 8 | dependencies: [ |
| 9 | gtest_proj.dependency('gtest'), |
| 10 | gtest_proj.dependency('gtest_main'), |
| 11 | ]) |
| 12 | gmock = gtest_proj.dependency('gmock') |
| 13 | else |
| 14 | assert(not get_option('tests').enabled(), 'Googletest is required') |
| 15 | endif |
| 16 | endif |
| 17 | |
| 18 | gtests = [ |
kasunath | e8946af | 2022-05-23 12:32:09 -0700 | [diff] [blame] | 19 | 'bej_decoder', |
kasunath | 0aa36d8 | 2022-11-23 14:24:15 -0800 | [diff] [blame^] | 20 | 'bej_common', |
kasunath | d073aa1 | 2022-05-12 16:08:49 -0700 | [diff] [blame] | 21 | 'bej_dictionary', |
kasunath | 7ffd30a | 2022-05-10 18:11:34 -0700 | [diff] [blame] | 22 | ] |
| 23 | foreach t : gtests |
| 24 | test(t, executable(t.underscorify(), t + '_test.cpp', |
| 25 | build_by_default: false, |
| 26 | implicit_include_directories: false, |
| 27 | dependencies: [libbej, gtest, gmock])) |
| 28 | endforeach |