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:
parent
ae484bf425
commit
a36b187879
8 changed files with 96 additions and 62 deletions
9
Makefile
9
Makefile
|
@ -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
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue