mirror of
https://github.com/RGBCube/serenity
synced 2025-05-31 11:08:11 +00:00

This adds component declarations so that users can select to not build certain parts of the OS.
13 lines
194 B
CMake
13 lines
194 B
CMake
serenity_component(
|
|
TelnetServer
|
|
TARGETS TelnetServer
|
|
)
|
|
|
|
set(SOURCES
|
|
Client.cpp
|
|
main.cpp
|
|
Parser.cpp
|
|
)
|
|
|
|
serenity_bin(TelnetServer)
|
|
target_link_libraries(TelnetServer LibCore)
|