summaryrefslogtreecommitdiff
path: root/Userland/Services/SQLServer/CMakeLists.txt
blob: 87e3d0fcd7d6b6c60f2bd312b51f8dda4564bca5 (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
    ClientConnection.cpp
    DatabaseConnection.cpp
    main.cpp
    SQLClientEndpoint.h
    SQLServerEndpoint.h
    SQLStatement.cpp
    )

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