blob: 92225b49f561020b014872eedc5bb4a7c24ddf05 [file] [log] [blame]
Brad Bishop39b370a2019-09-02 02:37:32 -04001test(
2 'nvtest',
3 executable(
4 'nvtest', 'nvtest.cpp',
5 dependencies: [
6 gmock,
7 gtest,
8 ],
Brandon Wymandc8e9312020-02-14 17:04:18 -06009 link_args: dynamic_linker,
Patrick Williams5c6a6932023-11-29 06:44:29 -060010 build_rpath: get_option('oe-sdk').allowed() ? rpath : '',
Brad Bishop39b370a2019-09-02 02:37:32 -040011 implicit_include_directories: false,
12 include_directories: '..',
13 )
14)
Shawn McCarney9462e062020-09-15 14:39:17 -050015
16test(
17 'file_descriptor_tests',
18 executable(
19 'file_descriptor_tests', 'file_descriptor_tests.cpp',
20 dependencies: [
21 gtest,
22 ],
23 link_args: dynamic_linker,
Patrick Williams5c6a6932023-11-29 06:44:29 -060024 build_rpath: get_option('oe-sdk').allowed() ? rpath : '',
Shawn McCarney9462e062020-09-15 14:39:17 -050025 implicit_include_directories: false,
26 include_directories: '..',
27 )
28)