mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2024-11-10 13:00:29 +03:00
e77ca79897
This moves the configuration of the web server, which currently only consists of the root path, into a new class, Configuration. Since the configuration is global and not per client, it is accessed by a singleton getter. This change simplifies future extensions of the configurable parameters.
9 lines
138 B
CMake
9 lines
138 B
CMake
set(SOURCES
|
|
Client.cpp
|
|
Configuration.cpp
|
|
main.cpp
|
|
)
|
|
|
|
serenity_bin(WebServer)
|
|
target_link_libraries(WebServer LibCore LibHTTP)
|