mirror of
https://github.com/fergalmoran/ladybird.git
synced 2026-02-04 23:07:16 +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.
22 lines
409 B
CMake
22 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)
|