fix for host osal linux

This commit is contained in:
Robin Müller 2020-12-07 12:25:30 +01:00
parent c4ba243885
commit 489a2097b8
1 changed files with 6 additions and 0 deletions

View File

@ -9,6 +9,12 @@ elseif(${OS_FSFW} STREQUAL "host")
add_subdirectory(host)
if (WIN32)
add_subdirectory(windows)
elseif(UNIX)
target_sources(${LIB_FSFW_NAME}
PUBLIC
linux/TcUnixUdpPollingTask.cpp
linux/TmTcUnixUdpBridge.cpp
)
endif ()
else()