Merge branch 'mueller/cmd-executor' into mueller/master

This commit is contained in:
Robin Müller 2021-10-11 20:06:10 +02:00
commit 0dedd8f2a1
4 changed files with 17 additions and 18 deletions

View File

@ -4,6 +4,7 @@ endif()
target_sources(${LIB_FSFW_NAME} PRIVATE
UnixFileGuard.cpp
CommandExecutor.cpp
utility.cpp
)

View File

@ -1,5 +1,4 @@
target_sources(${LIB_FSFW_NAME}
PRIVATE
target_sources(${LIB_FSFW_NAME} PRIVATE
Clock.cpp
BinarySemaphore.cpp
CountingSemaphore.cpp
@ -15,7 +14,6 @@ target_sources(${LIB_FSFW_NAME}
TaskFactory.cpp
tcpipHelpers.cpp
unixUtility.cpp
CommandExecutor.cpp
)
find_package(Threads REQUIRED)