mirror of
https://github.com/RGBCube/serenity
synced 2025-05-31 15:48:12 +00:00

The single 4000-line WrapperGenerator.cpp file was proving to be a pain to hack, and was filled with spaghetti, split it into a bunch of files to lessen the impact of the spaghetti. Also refactor the whole parser to use a class instead of a giant function with a million lambdas.
8 lines
405 B
CMake
8 lines
405 B
CMake
set(SOURCES "") # avoid pulling SOURCES from parent scope
|
|
|
|
lagom_tool(Generate_CSS_PropertyID_h SOURCES Generate_CSS_PropertyID_h.cpp)
|
|
lagom_tool(Generate_CSS_PropertyID_cpp SOURCES Generate_CSS_PropertyID_cpp.cpp)
|
|
lagom_tool(Generate_CSS_ValueID_h SOURCES Generate_CSS_ValueID_h.cpp)
|
|
lagom_tool(Generate_CSS_ValueID_cpp SOURCES Generate_CSS_ValueID_cpp.cpp)
|
|
|
|
add_subdirectory(WrapperGenerator)
|