1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-28 03:37:35 +00:00

Demos: Add a HelloWorld2 demo.

This is a simple test app with its UI generated from a VisualBuilder form.
The name is probably silly, but who cares. :^)
This commit is contained in:
Andreas Kling 2019-07-10 21:13:29 +02:00
parent b3d431e390
commit 0bf5c6fa3a
6 changed files with 58 additions and 0 deletions

View file

@ -0,0 +1,27 @@
include ../../Makefile.common
OBJS = \
main.o
APP = HelloWorld2
DEFINES += -DUSERLAND
all: $(APP)
main.cpp: UI_HelloWorld2.h
UI_HelloWorld2.h: HelloWorld2.frm
../../DevTools/FormCompiler/FormCompiler $< > $@
$(APP): $(OBJS)
$(LD) -o $(APP) $(LDFLAGS) $(OBJS) -lgui -lcore -lc
.cpp.o:
@echo "CXX $<"; $(CXX) $(CXXFLAGS) -o $@ -c $<
-include $(OBJS:%.o=%.d)
clean:
@echo "CLEAN"; rm -f $(APP) $(OBJS) *.d