1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-29 06:37:34 +00:00

SpiceAgent: Implement setting the user's clipboard contents for text

We also now use GUI::Clipboard for setting the clipboard contents,
instead of using a custom connection to the Clipboard server.
This commit is contained in:
Caoimhe 2023-05-13 14:20:41 +01:00 committed by Andreas Kling
parent 9c4538a9a8
commit 3b6d63f723
8 changed files with 96 additions and 124 deletions

View file

@ -7,9 +7,8 @@ set(SOURCES
main.cpp
Message.cpp
SpiceAgent.cpp
ConnectionToClipboardServer.cpp
)
serenity_bin(SpiceAgent)
target_link_libraries(SpiceAgent PRIVATE LibGfx LibCore LibIPC LibMain)
target_link_libraries(SpiceAgent PRIVATE LibCore LibGfx LibGUI LibMain)
add_dependencies(SpiceAgent Clipboard)