mirror of
https://github.com/RGBCube/serenity
synced 2025-05-25 19:05:07 +00:00
20 lines
407 B
CMake
20 lines
407 B
CMake
serenity_component(
|
|
SQLServer
|
|
REQUIRED
|
|
TARGETS SQLServer
|
|
)
|
|
|
|
compile_ipc(SQLServer.ipc SQLServerEndpoint.h)
|
|
compile_ipc(SQLClient.ipc SQLClientEndpoint.h)
|
|
|
|
set(SOURCES
|
|
ClientConnection.cpp
|
|
DatabaseConnection.cpp
|
|
main.cpp
|
|
SQLClientEndpoint.h
|
|
SQLServerEndpoint.h
|
|
SQLStatement.cpp
|
|
)
|
|
|
|
serenity_bin(SQLServer)
|
|
target_link_libraries(SQLServer LibCore LibIPC LibSQL LibMain)
|