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

This parser builds on the LibSQL lexer and currently only allows users to parse 'CREATE TABLE' statements.
8 lines
121 B
CMake
8 lines
121 B
CMake
set(SOURCES
|
|
Lexer.cpp
|
|
Parser.cpp
|
|
Token.cpp
|
|
)
|
|
|
|
serenity_lib(LibSQL sql)
|
|
target_link_libraries(LibSQL LibCore)
|