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

LibSQL: Introduce a SQL library with a tokenizer

LibSQL aims to be a SQLite clone for SerenityOS. Step 1 is creating a
tokenizer to lex SQL tokens. This lexer is heavily influenced by the
LibJS lexer.
This commit is contained in:
Timothy Flynn 2021-04-18 17:35:40 -04:00 committed by Andreas Kling
parent 55b7b8e930
commit 90517da9ca
6 changed files with 716 additions and 0 deletions

View file

@ -0,0 +1,7 @@
set(SOURCES
Lexer.cpp
Token.cpp
)
serenity_lib(LibSQL sql)
target_link_libraries(LibSQL LibCore)