mirror of
https://github.com/SerenityOS/serenity.git
synced 2025-01-24 18:32:28 -05:00
b1a3bb638b
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.
13 lines
290 B
CMake
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)
|