mirror of
https://github.com/fergalmoran/ladybird.git
synced 2026-01-07 09:04:30 +00:00
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.
13 lines
199 B
CMake
13 lines
199 B
CMake
serenity_component(
|
|
NetworkServer
|
|
REQUIRED
|
|
TARGETS NetworkServer
|
|
)
|
|
|
|
set(SOURCES
|
|
main.cpp
|
|
)
|
|
|
|
serenity_bin(NetworkServer)
|
|
target_link_libraries(NetworkServer LibCore LibConfig LibMain)
|