DBC now works and has a test.

This commit is contained in:
Zed A. Shaw 2024-09-16 09:20:35 -04:00
parent f632f2d5af
commit 2035a6dd00
8 changed files with 100 additions and 34 deletions

View file

@ -29,6 +29,7 @@ subdir('scratchpad')
executable('escape_turings_tarpit',
['game_engine.cpp',
'dbc.cpp',
'gui.cpp',
'watcher.cpp',
'builder.cpp',
@ -37,9 +38,11 @@ executable('escape_turings_tarpit',
dependencies: dependencies)
runtests = executable('runtests', [
'dbc.cpp',
'game_engine.cpp',
'tests/game_engine.cpp',
'tests/fsm.cpp',
'tests/dbc.cpp',
],
dependencies: dependencies + [catch2])