mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2025-05-07 19:52:55 +00:00
This patch introduces the SQLServer system server. This service is supposed to be the only process/application talking to database storage. This makes things like locking and caching more reliable, easier to implement, and more efficient. In LibSQL we added a client component that does the ugly IPC nitty- gritty for you. All that's needed is setting a number of event handler lambdas and you can connect to databases and execute statements on them. Applications that wish to use this SQLClient class obviously need to link LibSQL and LibIPC.
5 lines
151 B
CMake
5 lines
151 B
CMake
file(GLOB TEST_SOURCES CONFIGURE_DEPENDS "*.cpp")
|
|
|
|
foreach(source ${TEST_SOURCES})
|
|
serenity_test(${source} LibSQL LIBS LibSQL LibIPC)
|
|
endforeach()
|