1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-05-15 15:04:59 +00:00
serenity/Userland/Libraries/LibSQL/CMakeLists.txt
Jan de Visser 4198f7e1af LibSQL: Move Lexer and Parser machinery to AST directory
The SQL engine is expected to be a fairly sizeable piece of software.
Therefore we're starting to restructure the codebase for growth.
2021-06-24 00:36:53 +02:00

21 lines
425 B
CMake

set(SOURCES
AST/Lexer.cpp
AST/Parser.cpp
AST/SyntaxHighlighter.cpp
AST/Token.cpp
BTree.cpp
BTreeIterator.cpp
Database.cpp
HashIndex.cpp
Heap.cpp
Index.cpp
Key.cpp
Meta.cpp
Row.cpp
TreeNode.cpp
Tuple.cpp
Value.cpp
)
serenity_lib(LibSQL sql)
target_link_libraries(LibSQL LibCore LibSyntax)