1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-05-31 15:58:11 +00:00
serenity/MenuApplets/ClipboardHistory/CMakeLists.txt
Sergey Bugaev f7ae66cee3 ClipboardHistory: Add a clipboard history applet :^)
It will listen for clipboard content changes in the backgroud. Once you click
on its icon, it will pop up a window listing all recorded clipboard contents.
You can then double-click on an item to copy it again.
2020-05-16 09:13:25 +02:00

8 lines
192 B
CMake

set(SOURCES
ClipboardHistoryModel.cpp
IconWidget.cpp
main.cpp
)
serenity_bin(ClipboardHistory.MenuApplet)
target_link_libraries(ClipboardHistory.MenuApplet LibGUI LibCore LibGfx)