From 489a2097b850313154866cf4d7bbfbc09320a5b5 Mon Sep 17 00:00:00 2001 From: "Robin.Mueller" Date: Mon, 7 Dec 2020 12:25:30 +0100 Subject: [PATCH] fix for host osal linux --- osal/CMakeLists.txt | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/osal/CMakeLists.txt b/osal/CMakeLists.txt index d7aa13034..02ff24057 100644 --- a/osal/CMakeLists.txt +++ b/osal/CMakeLists.txt @@ -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()