mirror of
https://github.com/RGBCube/serenity
synced 2025-05-28 18:35:09 +00:00

This adds component declarations so that users can select to not build certain parts of the OS.
13 lines
197 B
CMake
13 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)
|