Renderer of ANSI codes to SFML is now working. Does seem to be a little slow but that'll be easy to fix later.

This commit is contained in:
Zed A. Shaw 2024-11-02 03:53:33 -04:00
parent ae484bf425
commit a36b187879
8 changed files with 96 additions and 62 deletions

View file

@ -3,16 +3,17 @@ all: build test
reset:
powershell -executionpolicy bypass .\scripts\reset_build.ps1
rageldev:
make ragel
%.cpp : %.rl
ragel -o $@ $<
rageldev: ragel
make test > test.txt
vim test.txt
ragel:
ragel -o .\scratchpad\testragel.cpp .\scratchpad\testragel.rl
ragel -o .\ansi_parser.cpp .\ansi_parser.rl
build:
build: ansi_parser.cpp
meson compile -j 4 -C builddir
test: build