mirror of
https://github.com/RGBCube/serenity
synced 2025-05-31 15:38:10 +00:00

Unfortunately this patch is quite large. The main functionality included are a BTree index implementation and the Heap class which manages persistent storage. Also included are a Key subclass of the Tuple class, which is a specialization for index key tuples. This "dragged in" the Meta layer, which has classes defining SQL objects like tables and indexes.
18 lines
350 B
CMake
18 lines
350 B
CMake
set(SOURCES
|
|
BTree.cpp
|
|
BTreeIterator.cpp
|
|
Heap.cpp
|
|
Index.cpp
|
|
Key.cpp
|
|
Lexer.cpp
|
|
Meta.cpp
|
|
Parser.cpp
|
|
SyntaxHighlighter.cpp
|
|
Token.cpp
|
|
TreeNode.cpp
|
|
Tuple.cpp
|
|
Value.cpp
|
|
)
|
|
|
|
serenity_lib(LibSQL sql)
|
|
target_link_libraries(LibSQL LibCore LibSyntax)
|