Brad Bishop | 39b370a | 2019-09-02 02:37:32 -0400 | [diff] [blame] | 1 | test( |
| 2 | 'nvtest', |
| 3 | executable( |
| 4 | 'nvtest', 'nvtest.cpp', |
| 5 | dependencies: [ |
| 6 | gmock, |
| 7 | gtest, |
| 8 | ], |
Brandon Wyman | dc8e931 | 2020-02-14 17:04:18 -0600 | [diff] [blame] | 9 | link_args: dynamic_linker, |
| 10 | build_rpath: get_option('oe-sdk').enabled() ? rpath : '', |
Brad Bishop | 39b370a | 2019-09-02 02:37:32 -0400 | [diff] [blame] | 11 | implicit_include_directories: false, |
| 12 | include_directories: '..', |
| 13 | ) |
| 14 | ) |
Shawn McCarney | 9462e06 | 2020-09-15 14:39:17 -0500 | [diff] [blame] | 15 | |
| 16 | test( |
| 17 | 'file_descriptor_tests', |
| 18 | executable( |
| 19 | 'file_descriptor_tests', 'file_descriptor_tests.cpp', |
| 20 | dependencies: [ |
| 21 | gtest, |
| 22 | ], |
| 23 | link_args: dynamic_linker, |
| 24 | build_rpath: get_option('oe-sdk').enabled() ? rpath : '', |
| 25 | implicit_include_directories: false, |
| 26 | include_directories: '..', |
| 27 | ) |
| 28 | ) |