mirror of
https://github.com/RGBCube/serenity
synced 2025-05-31 10:18:11 +00:00

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.
15 lines
315 B
CMake
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)
|