mirror of
https://github.com/RGBCube/serenity
synced 2025-05-31 13:38:11 +00:00

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/'
20 lines
411 B
CMake
20 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)
|