1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-27 17:47:36 +00:00

HackStudio: Embed a Terminal widget below the text editor

This will be very useful for running (and interacting with) programs
after we build them. :^)
This commit is contained in:
Andreas Kling 2019-10-21 20:17:32 +02:00
parent 5b30aa8b02
commit 43ccb28852
4 changed files with 120 additions and 4 deletions

View file

@ -2,6 +2,7 @@ include ../../Makefile.common
OBJS = \
Project.o \
TerminalWrapper.o \
main.o
APP = HackStudio
@ -11,7 +12,7 @@ DEFINES += -DUSERLAND
all: $(APP)
$(APP): $(OBJS)
$(LD) -o $(APP) $(LDFLAGS) $(OBJS) -lgui -ldraw -lcore -lc
$(LD) -o $(APP) $(LDFLAGS) $(OBJS) -lvt -lgui -ldraw -lcore -lc
.cpp.o:
@echo "CXX $<"; $(CXX) $(CXXFLAGS) -o $@ -c $<