mirror of
https://github.com/SerenityOS/serenity.git
synced 2025-01-24 10:22:05 -05:00
12 lines
179 B
CMake
12 lines
179 B
CMake
serenity_component(
|
|
EchoServer
|
|
TARGETS EchoServer
|
|
)
|
|
|
|
set(SOURCES
|
|
Client.cpp
|
|
main.cpp
|
|
)
|
|
|
|
serenity_bin(EchoServer)
|
|
target_link_libraries(EchoServer LibCore LibMain)
|