serenity/Userland/Applets/ClipboardHistory/CMakeLists.txt
Mustafa Quraish b1a3bb638b ClipboardHistory: Use config file to set number of history items
The number of items in history was hardcoded to 20 earlier, now
we try to load this value from a config file. The default if none
is available is still 20.
2021-09-18 03:33:25 +00:00

13 lines
290 B
CMake

serenity_component(
ClipboardHistory.Applet
REQUIRED
TARGETS ClipboardHistory.Applet
)
set(SOURCES
ClipboardHistoryModel.cpp
main.cpp
)
serenity_app(ClipboardHistory.Applet ICON edit-copy)
target_link_libraries(ClipboardHistory.Applet LibGUI LibCore LibGfx LibConfig)