mirror of
https://github.com/SerenityOS/serenity.git
synced 2025-01-25 19:02:07 -05:00
631d36fd98
This adds component declarations so that users can select to not build certain parts of the OS.
12 lines
215 B
CMake
12 lines
215 B
CMake
serenity_component(
|
|
Audio.Applet
|
|
REQUIRED
|
|
TARGETS Audio.Applet
|
|
)
|
|
|
|
set(SOURCES
|
|
main.cpp
|
|
)
|
|
|
|
serenity_app(Audio.Applet ICON audio-volume-high)
|
|
target_link_libraries(Audio.Applet LibGUI LibGfx LibAudio)
|