1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-05-25 19:05:07 +00:00
serenity/Userland/Services/SQLServer/CMakeLists.txt
2021-12-06 19:22:16 +01:00

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)