mirror of
https://github.com/fergalmoran/ladybird.git
synced 2026-01-06 08:36:15 +00:00
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.
14 lines
290 B
CMake
14 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)
|