summaryrefslogtreecommitdiff
path: root/Userland/Services/EchoServer/CMakeLists.txt
blob: 4c02e9d1b015fe37154b84f0025f8bf7614a4153 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
serenity_component(
    EchoServer
    TARGETS EchoServer
)

set(SOURCES
    Client.cpp
    main.cpp
)

serenity_bin(EchoServer)
target_link_libraries(EchoServer LibCore LibMain)