1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-08 06:47:34 +00:00
serenity/Userland/Services/FileOperation/CMakeLists.txt
Andreas Kling 4205038c45 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.
2021-04-13 10:12:50 +02:00

6 lines
101 B
CMake

set(SOURCES
main.cpp
)
serenity_bin(FileOperation)
target_link_libraries(FileOperation LibCore)