Zane Shelley | 11b8994 | 2019-11-07 11:07:28 -0600 | [diff] [blame] | 1 | # Simulator sources |
Patrick Williams | fffd983 | 2025-02-01 08:38:36 -0500 | [diff] [blame^] | 2 | sim_src = files('../sim_tracing.cpp', 'sim_hardware_access.cpp', 'simulator.cpp') |
Zane Shelley | ad103b9 | 2019-07-31 15:57:54 -0500 | [diff] [blame] | 3 | |
Zane Shelley | a7535ad | 2021-07-15 22:13:45 -0500 | [diff] [blame] | 4 | subdir('testcases') |
Zane Shelley | ad103b9 | 2019-07-31 15:57:54 -0500 | [diff] [blame] | 5 | |
Ben Tyner | 032bf9e | 2020-05-06 21:27:54 -0500 | [diff] [blame] | 6 | # Build simulator linked locally |
Patrick Williams | fffd983 | 2025-02-01 08:38:36 -0500 | [diff] [blame^] | 7 | test( |
| 8 | 'simulator', |
| 9 | executable( |
| 10 | 'simulator', |
| 11 | sim_src, |
| 12 | test_src, |
| 13 | dependencies: gtest_dep, |
| 14 | link_with: libhei_static, |
| 15 | include_directories: [incdir, '.'], |
| 16 | ), |
| 17 | ) |