blob: 1ce47e72c91dcabdfcac2c7d48f663a2266a1601 [file] [log] [blame]
Zane Shelley11b89942019-11-07 11:07:28 -06001# Simulator sources
Patrick Williamsfffd9832025-02-01 08:38:36 -05002sim_src = files('../sim_tracing.cpp', 'sim_hardware_access.cpp', 'simulator.cpp')
Zane Shelleyad103b92019-07-31 15:57:54 -05003
Zane Shelleya7535ad2021-07-15 22:13:45 -05004subdir('testcases')
Zane Shelleyad103b92019-07-31 15:57:54 -05005
Ben Tyner032bf9e2020-05-06 21:27:54 -05006# Build simulator linked locally
Patrick Williamsfffd9832025-02-01 08:38:36 -05007test(
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)