1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-26 06:07:44 +00:00

LibHTML: Use LibProtocol for HTTP requests :^)

This moves all of the browser networking to ProtocolServer.
This commit is contained in:
Andreas Kling 2019-11-24 14:24:09 +01:00
parent 653e61d9cf
commit 0d2659c0a2
4 changed files with 26 additions and 22 deletions

View file

@ -25,7 +25,7 @@ DEFINES += -DUSERLAND
all: $(APP)
$(APP): $(OBJS)
$(LD) -o $(APP) $(LDFLAGS) $(OBJS) -lvt -lhtml -lmarkdown -lgui -ldraw -lthread -lpthread -lcore -lc
$(LD) -o $(APP) $(LDFLAGS) $(OBJS) -lvt -lhtml -lprotocol -lipc -lmarkdown -lgui -ldraw -lthread -lpthread -lcore -lc
.cpp.o:
@echo "CXX $<"; $(CXX) $(CXXFLAGS) -o $@ -c $<