ANSI code renderer starts working but I have to make it utf8/wchar_t friendly.

This commit is contained in:
Zed A. Shaw 2024-11-01 18:07:47 -04:00
parent 6ca4614fcb
commit ae484bf425
9 changed files with 136 additions and 139 deletions

View file

@ -21,12 +21,12 @@ runtests = executable('runtests', [
'collider.cpp',
'ansi_parser.cpp',
'render.cpp',
#'tests/fsm.cpp',
#'tests/dbc.cpp',
#'tests/map.cpp',
#'tests/collider.cpp',
#'tests/sound.cpp',
#'tests/dinkyecs.cpp',
'tests/fsm.cpp',
'tests/dbc.cpp',
'tests/map.cpp',
'tests/collider.cpp',
'tests/sound.cpp',
'tests/dinkyecs.cpp',
'tests/ansi_parser.cpp',
],
dependencies: dependencies)
@ -41,6 +41,7 @@ roguish = executable('roguish', [
'collider.cpp',
'combat.cpp',
'systems.cpp',
'ansi_parser.cpp',
'render.cpp',
],
dependencies: dependencies)