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

LibSQL: Add a syntax highlighter

This commit is contained in:
Dylan Katz 2021-05-08 18:30:18 -07:00 committed by Andreas Kling
parent 5423aba4ef
commit 984b6e08cf
5 changed files with 147 additions and 1 deletions

View file

@ -1,8 +1,9 @@
set(SOURCES
Lexer.cpp
Parser.cpp
SyntaxHighlighter.cpp
Token.cpp
)
serenity_lib(LibSQL sql)
target_link_libraries(LibSQL LibCore)
target_link_libraries(LibSQL LibCore LibSyntax)