mirror of
https://github.com/RGBCube/serenity
synced 2025-05-25 18:35:09 +00:00

This change adds the capability to drop AppFiles to the quick launch section of the Taskbar. All logic was moved to a new QuickLaunchWidget.
19 lines
360 B
CMake
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)
|