1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-05-31 06:38:10 +00:00
serenity/Userland/Applets/DesktopPicker/CMakeLists.txt
Peter Elliott 01248d28ef Applets: Add DesktopPicker applet
This applet displays a grid of desktops, and shows the user what virtual
desktop they are on. When clicked, the desktop will be changed.
2021-07-19 18:21:40 +02:00

13 lines
251 B
CMake

serenity_component(
DesktopPicker.Applet
REQUIRED
TARGETS DesktopPicker.Applet
)
set(SOURCES
DesktopStatusWindow.cpp
main.cpp
)
serenity_bin(DesktopPicker.Applet)
target_link_libraries(DesktopPicker.Applet LibGUI LibCore LibGfx)