mirror of
https://github.com/LadybirdBrowser/ladybird
synced 2026-05-08 16:12:23 +02:00
This adds component declarations so that users can select to not build certain parts of the OS.
13 lines
223 B
CMake
13 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)
|