Subprocess with pipe capturing

This commit is contained in:
VegOwOtenks 2024-09-22 22:26:33 +02:00
parent 7a3f1955b9
commit a0da4ce1a3
6 changed files with 225 additions and 0 deletions

View file

@ -44,3 +44,11 @@ target_link_libraries(BinaryTree-test
pointers
allocator-interface
)
add_executable(Subprocess-test Subprocess.test.c)
target_link_libraries(Subprocess-test
Subprocess
threading
pointers
allocator-interface
)