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:
parent
69fea8d41d
commit
2d3293dfbd
3 changed files with 77 additions and 0 deletions
28
DevTools/FormCompiler/Makefile
Normal file
28
DevTools/FormCompiler/Makefile
Normal 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)
|
Loading…
Add table
Add a link
Reference in a new issue