1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-09-16 03:16:17 +00:00

LibWeb: Add code generator for CSS transform functions

This first step just generates the TransformFunction enum, but more will
follow.
This commit is contained in:
Sam Atkins 2022-04-17 15:33:50 +01:00 committed by Andreas Kling
parent 807101e394
commit 5f3498d50f
4 changed files with 139 additions and 0 deletions

View file

@ -3,6 +3,7 @@ set(SOURCES "") # avoid pulling SOURCES from parent scope
lagom_tool(GenerateCSSEnums SOURCES GenerateCSSEnums.cpp LIBS LagomMain)
lagom_tool(GenerateCSSMediaFeatureID SOURCES GenerateCSSMediaFeatureID.cpp LIBS LagomMain)
lagom_tool(GenerateCSSPropertyID SOURCES GenerateCSSPropertyID.cpp LIBS LagomMain)
lagom_tool(GenerateCSSTransformFunctions SOURCES GenerateCSSTransformFunctions.cpp LIBS LagomMain)
lagom_tool(GenerateCSSValueID SOURCES GenerateCSSValueID.cpp LIBS LagomMain)
add_subdirectory(WrapperGenerator)