1
0
forked from fsfw/fsfw

small bugfixes

This commit is contained in:
2020-12-07 12:17:02 +01:00
parent 33d4b57400
commit c4ba243885
2 changed files with 10 additions and 2 deletions

View File

@ -10,4 +10,12 @@ target_sources(${LIB_FSFW_NAME}
QueueMapManager.cpp
SemaphoreFactory.cpp
TaskFactory.cpp
)
)
if(UNIX)
target_link_libraries(${LIB_FSFW_NAME}
PRIVATE
pthread
rt
)
endif()