mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2025-10-19 07:33:20 +00:00

It currently lives in LibWebView as it was only used for cookies and local storage, both of which are managed in the UI process. Let's move it to its own library now to allow other processes to use it, without having to depend on LibWebView (and therefore LibWeb).
8 lines
189 B
CMake
8 lines
189 B
CMake
set(SOURCES
|
|
Database.cpp
|
|
)
|
|
|
|
find_package(SQLite3 REQUIRED)
|
|
|
|
ladybird_lib(LibDatabase database EXPLICIT_SYMBOL_EXPORT)
|
|
target_link_libraries(LibDatabase PRIVATE LibCore SQLite::SQLite3)
|