1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-05-25 18:35:09 +00:00
serenity/Userland/Services/Taskbar/CMakeLists.txt
faxe1008 c74afdde26 Taskbar: Add dropping of AppFiles to QuickLaunch
This change adds the capability to drop AppFiles to the quick launch
section of the Taskbar. All logic was moved to a new
QuickLaunchWidget.
2021-12-28 00:57:48 -08:00

19 lines
360 B
CMake

serenity_component(
Taskbar
REQUIRED
TARGETS Taskbar
)
set(SOURCES
main.cpp
ClockWidget.cpp
QuickLaunchWidget.cpp
ShutdownDialog.cpp
TaskbarButton.cpp
TaskbarWindow.cpp
WindowList.cpp
)
serenity_bin(Taskbar)
target_link_libraries(Taskbar LibGUI LibDesktop LibConfig LibMain)
serenity_install_headers(Services/Taskbar)