blob: 87b2d801e911c259e065368144119cd05546c37f [file] [log] [blame]
Zane Shelley11b89942019-11-07 11:07:28 -06001# Simulator sources
Zane Shelleya7535ad2021-07-15 22:13:45 -05002sim_src = files(
Zane Shelley11b89942019-11-07 11:07:28 -06003 'simulator.cpp',
Zane Shelley7649b8b2020-05-08 20:12:35 -05004 'sim_hardware_access.cpp',
5 '../sim_tracing.cpp'
Zane Shelleya7535ad2021-07-15 22:13:45 -05006)
Zane Shelleyad103b92019-07-31 15:57:54 -05007
Zane Shelleya7535ad2021-07-15 22:13:45 -05008subdir('testcases')
Zane Shelleyad103b92019-07-31 15:57:54 -05009
Ben Tyner032bf9e2020-05-06 21:27:54 -050010# Build simulator linked locally
Zane Shelleyfefc0162021-12-20 17:29:46 -060011test('simulator',
12 executable('simulator', sim_src, test_src,
13 dependencies : gtest_dep,
14 link_with : libhei_static,
15 include_directories: [ incdir, '.' ]))