mirror of
https://github.com/RGBCube/serenity
synced 2025-05-31 10:48:11 +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.
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)
|