2021-06-29 04:15:17 +03:00
|
|
|
serenity_component(
|
|
|
|
SQLServer
|
|
|
|
REQUIRED
|
|
|
|
TARGETS SQLServer
|
|
|
|
)
|
|
|
|
|
|
|
|
compile_ipc(SQLServer.ipc SQLServerEndpoint.h)
|
|
|
|
compile_ipc(SQLClient.ipc SQLClientEndpoint.h)
|
|
|
|
|
|
|
|
set(SOURCES
|
2022-02-25 13:18:30 +03:00
|
|
|
ConnectionFromClient.cpp
|
2021-06-29 04:15:17 +03:00
|
|
|
DatabaseConnection.cpp
|
|
|
|
main.cpp
|
2022-10-12 15:16:13 +03:00
|
|
|
SQLStatement.cpp
|
|
|
|
)
|
|
|
|
|
|
|
|
set(GENERATED_SOURCES
|
2021-06-29 04:15:17 +03:00
|
|
|
SQLClientEndpoint.h
|
|
|
|
SQLServerEndpoint.h
|
2022-10-12 15:16:13 +03:00
|
|
|
)
|
2021-06-29 04:15:17 +03:00
|
|
|
|
|
|
|
serenity_bin(SQLServer)
|
2022-10-21 22:43:56 +03:00
|
|
|
target_link_libraries(SQLServer PRIVATE LibCore LibIPC LibSQL LibMain)
|