mirror of
https://github.com/fergalmoran/ladybird.git
synced 2026-01-06 16:45:03 +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.
20 lines
360 B
CMake
20 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)
|