mirror of
https://github.com/SerenityOS/serenity.git
synced 2025-01-24 10:22:05 -05:00
631d36fd98
This adds component declarations so that users can select to not build certain parts of the OS.
12 lines
212 B
CMake
12 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)
|