mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2024-11-25 09:00:22 +00:00
ddd4547e13
This service is responsible for loading network configuration from a /etc/Network.ini config file. It sets up static IP address + mask or starts DHCPClient depending on configuration.
12 lines
199 B
CMake
12 lines
199 B
CMake
serenity_component(
|
|
NetworkServer
|
|
REQUIRED
|
|
TARGETS NetworkServer
|
|
)
|
|
|
|
set(SOURCES
|
|
main.cpp
|
|
)
|
|
|
|
serenity_bin(NetworkServer)
|
|
target_link_libraries(NetworkServer LibCore LibConfig LibMain)
|