mirror of
https://github.com/fergalmoran/ladybird.git
synced 2026-01-03 07:07:23 +00:00
This adds component declarations so that users can select to not build certain parts of the OS.
13 lines
212 B
CMake
13 lines
212 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)
|