mirror of
https://github.com/fergalmoran/ladybird.git
synced 2026-01-03 15:16:14 +00:00
This adds component declarations so that users can select to not build certain parts of the OS.
14 lines
233 B
CMake
14 lines
233 B
CMake
serenity_component(
|
|
AnalogClock
|
|
RECOMMENDED
|
|
TARGETS AnalogClock
|
|
)
|
|
|
|
set(SOURCES
|
|
main.cpp
|
|
AnalogClock.cpp
|
|
)
|
|
|
|
serenity_app(AnalogClock ICON app-analog-clock)
|
|
target_link_libraries(AnalogClock LibGUI)
|