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

This patch implements a basic hash index. It uses the extendible hashing algorith. Also includes a test file.
19 lines
372 B
CMake
19 lines
372 B
CMake
set(SOURCES
|
|
BTree.cpp
|
|
BTreeIterator.cpp
|
|
HashIndex.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)
|