1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-05-31 10:18:11 +00:00
serenity/Userland/Services/SpiceAgent/CMakeLists.txt
Caoimhe 0f3f190a5a SpiceAgent: Handle file transfer requests properly :^)
Now, we write the data recieved to a file when the user drags a file
onto the Spice Viewer window. Once complete, the FileExplorer will open
with the copied file highlighted.
2023-05-21 18:45:53 +02:00

15 lines
315 B
CMake

serenity_component(
SpiceAgent
TARGETS SpiceAgent
)
set(SOURCES
main.cpp
FileTransferOperation.cpp
Message.cpp
SpiceAgent.cpp
)
serenity_bin(SpiceAgent)
target_link_libraries(SpiceAgent PRIVATE LibCore LibDesktop LibFileSystem LibGfx LibGUI LibMain)
add_dependencies(SpiceAgent Clipboard)