serenity/Userland/Services/TelnetServer/CMakeLists.txt
Sam Atkins 143f820c68 TelnetServer: Port to LibMain
This is only a very basic change, since the fallible function calls are
all inside the `on_ready_to_accept` callback.
2021-12-27 22:00:01 +01:00

13 lines
202 B
CMake

serenity_component(
TelnetServer
TARGETS TelnetServer
)
set(SOURCES
Client.cpp
main.cpp
Parser.cpp
)
serenity_bin(TelnetServer)
target_link_libraries(TelnetServer LibCore LibMain)