A simple config loader test.

This commit is contained in:
Zed A. Shaw 2025-02-21 23:17:53 -05:00
parent b8bb49df2c
commit 947ccbe180
4 changed files with 24 additions and 4 deletions

View file

@ -92,10 +92,12 @@ sources = [
executable('runtests', sources + [
'tests/ansi_parser.cpp',
'tests/base.cpp',
'tests/components.cpp',
'tests/config.cpp',
'tests/dbc.cpp',
'tests/dinkyecs.cpp',
'tests/guecs.cpp',
'tests/fsm.cpp',
'tests/guecs.cpp',
'tests/inventory.cpp',
'tests/lel.cpp',
'tests/levelmanager.cpp',
@ -104,9 +106,8 @@ executable('runtests', sources + [
'tests/matrix.cpp',
'tests/pathing.cpp',
'tests/spatialmap.cpp',
'tests/tilemap.cpp',
'tests/components.cpp',
'tests/textures.cpp',
'tests/tilemap.cpp',
], override_options: exe_defaults,
dependencies: dependencies + [catch2])