mirror of
https://github.com/RGBCube/serenity
synced 2025-05-18 19:05:06 +00:00

This adds component declarations so that users can select to not build certain parts of the OS.
12 lines
223 B
CMake
12 lines
223 B
CMake
serenity_component(
|
|
ResourceGraph.Applet
|
|
REQUIRED
|
|
TARGETS ResourceGraph.Applet
|
|
)
|
|
|
|
set(SOURCES
|
|
main.cpp
|
|
)
|
|
|
|
serenity_bin(ResourceGraph.Applet)
|
|
target_link_libraries(ResourceGraph.Applet LibGUI LibCore LibGfx)
|