mirror of
https://github.com/SerenityOS/serenity
synced 2026-05-14 10:56:35 +02:00
This adds component declarations so that users can select to not build certain parts of the OS.
14 lines
197 B
CMake
14 lines
197 B
CMake
serenity_component(
|
|
WebServer
|
|
TARGETS WebServer
|
|
)
|
|
|
|
set(SOURCES
|
|
Client.cpp
|
|
Configuration.cpp
|
|
main.cpp
|
|
)
|
|
|
|
serenity_bin(WebServer)
|
|
target_link_libraries(WebServer LibCore LibHTTP)
|