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:
parent
55b7b8e930
commit
90517da9ca
6 changed files with 716 additions and 0 deletions
7
Userland/Libraries/LibSQL/CMakeLists.txt
Normal file
7
Userland/Libraries/LibSQL/CMakeLists.txt
Normal file
|
@ -0,0 +1,7 @@
|
|||
set(SOURCES
|
||||
Lexer.cpp
|
||||
Token.cpp
|
||||
)
|
||||
|
||||
serenity_lib(LibSQL sql)
|
||||
target_link_libraries(LibSQL LibCore)
|
Loading…
Add table
Add a link
Reference in a new issue