mirror of
https://github.com/RGBCube/serenity
synced 2025-05-31 14:28:12 +00:00

This patch implements the beginnings of a database API allowing for the creation of tables, inserting rows in those tables, and retrieving those rows.
21 lines
409 B
CMake
21 lines
409 B
CMake
set(SOURCES
|
|
BTree.cpp
|
|
BTreeIterator.cpp
|
|
Database.cpp
|
|
HashIndex.cpp
|
|
Heap.cpp
|
|
Index.cpp
|
|
Key.cpp
|
|
Lexer.cpp
|
|
Meta.cpp
|
|
Parser.cpp
|
|
Row.cpp
|
|
SyntaxHighlighter.cpp
|
|
Token.cpp
|
|
TreeNode.cpp
|
|
Tuple.cpp
|
|
Value.cpp
|
|
)
|
|
|
|
serenity_lib(LibSQL sql)
|
|
target_link_libraries(LibSQL LibCore LibSyntax)
|