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