mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2025-01-08 20:32:56 +03:00
3a71748e5d
This was done with CLion's automatic rename feature and with: find . -name ClientConnection.h | rename 's/ClientConnection\.h/ConnectionFromClient.h/' find . -name ClientConnection.cpp | rename 's/ClientConnection\.cpp/ConnectionFromClient.cpp/'
21 lines
411 B
CMake
21 lines
411 B
CMake
serenity_component(
|
|
SQLServer
|
|
REQUIRED
|
|
TARGETS SQLServer
|
|
)
|
|
|
|
compile_ipc(SQLServer.ipc SQLServerEndpoint.h)
|
|
compile_ipc(SQLClient.ipc SQLClientEndpoint.h)
|
|
|
|
set(SOURCES
|
|
ConnectionFromClient.cpp
|
|
DatabaseConnection.cpp
|
|
main.cpp
|
|
SQLClientEndpoint.h
|
|
SQLServerEndpoint.h
|
|
SQLStatement.cpp
|
|
)
|
|
|
|
serenity_bin(SQLServer)
|
|
target_link_libraries(SQLServer LibCore LibIPC LibSQL LibMain)
|