1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-28 20:37:35 +00:00

FileOperation: Add a new helper program for out-of-process file ops

This is a helper program for FileManager that performs a file operation
in a separate process and reports progress on standard out.

This initial implementation only supports the "Copy" operation and does
not do any detailed error handling.
This commit is contained in:
Andreas Kling 2021-04-12 20:29:57 +02:00
parent 42abda2a19
commit 4205038c45
3 changed files with 175 additions and 0 deletions

View file

@ -4,6 +4,7 @@ add_subdirectory(Clipboard)
add_subdirectory(CrashDaemon)
add_subdirectory(DHCPClient)
add_subdirectory(EchoServer)
add_subdirectory(FileOperation)
add_subdirectory(ImageDecoder)
add_subdirectory(LaunchServer)
add_subdirectory(LookupServer)