frontend with sfml window displaying tile data

This commit is contained in:
madmaurice 2023-09-18 23:33:39 +02:00
parent d0a4b5a217
commit 6263386b11
4 changed files with 151 additions and 6 deletions

View file

@ -1,4 +1,4 @@
TARGETS := libemu.a vgbc vgbc.test vgbc.inspect vgbc.gbdif
TARGETS := libemu.a vgbc vgbc.test vgbc.inspect vgbc.gbdif vgbc.lcdtest
sfml_packages := sfml-graphics
sfml_CXXFLAGS := $(shell pkg-config --cflags $(sfml_packages))
@ -39,3 +39,7 @@ verb_vgbc.inspect := link
# Game Boy Doctor Interface
modules_vgbc.gbdif := misc/gbdif.o libemu.a
verb_vgbc.gbdif := link
modules_vgbc.lcdtest := lcd/lcdtest.o libemu.a
verb_vgbc.lcdtest := link
LDFLAGS_vgbc.lcdtest := $(sfml_LDFLAGS)