1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-28 19:17:44 +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

@ -0,0 +1,6 @@
set(SOURCES
main.cpp
)
serenity_bin(FileOperation)
target_link_libraries(FileOperation LibCore)