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

FormCompiler: Start working on a C++ code generator for VisualBuilder forms.

This commit is contained in:
Andreas Kling 2019-07-10 20:41:31 +02:00
parent 69fea8d41d
commit 2d3293dfbd
3 changed files with 77 additions and 0 deletions

View file

@ -0,0 +1,28 @@
PROGRAM = FormCompiler
SOURCES = \
main.cpp \
../../AK/String.cpp \
../../AK/StringImpl.cpp \
../../AK/StringBuilder.cpp \
../../AK/StringView.cpp \
../../AK/JsonObject.cpp \
../../AK/JsonValue.cpp \
../../AK/JsonArray.cpp \
../../AK/JsonParser.cpp \
../../AK/LogStream.cpp \
../../Libraries/LibCore/CIODevice.cpp \
../../Libraries/LibCore/CFile.cpp \
../../Libraries/LibCore/CObject.cpp \
../../Libraries/LibCore/CEvent.cpp \
../../Libraries/LibCore/CEventLoop.cpp
all: $(PROGRAM)
CXXFLAGS = -std=c++17 -Wall -Wextra
$(PROGRAM): $(SOURCES)
$(CXX) $(CXXFLAGS) -I../ -I../../ -I../../Libraries/ -o $@ $(SOURCES)
clean:
rm -f $(PROGRAM)