1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-05-25 15:35:06 +00:00
serenity/Userland/Applets/Network/CMakeLists.txt
Andreas Kling b03f8d18c5 Applets/Network: Port to LibMain :^)
This opens up using TRY() for syscalls and Core::Object creation.
2021-11-23 15:44:59 +01:00

12 lines
220 B
CMake

serenity_component(
Network.Applet
REQUIRED
TARGETS Network.Applet
)
set(SOURCES
main.cpp
)
serenity_app(Network.Applet ICON network)
target_link_libraries(Network.Applet LibGUI LibCore LibGfx LibMain)