summaryrefslogtreecommitdiff
path: root/Userland/Services/SQLServer/CMakeLists.txt
blob: 7af579d07e75fd553cb5da1ea3fa1394681f5600 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
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
    SQLStatement.cpp
)

set(GENERATED_SOURCES
    SQLClientEndpoint.h
    SQLServerEndpoint.h
)

serenity_bin(SQLServer)
target_link_libraries(SQLServer PRIVATE LibCore LibIPC LibSQL LibMain)