1
0
forked from fsfw/fsfw

some bugfixes

This commit is contained in:
2020-09-06 11:48:32 +02:00
parent b7c4f5ce05
commit 3e0819f954
6 changed files with 234 additions and 6 deletions

View File

@ -37,6 +37,10 @@ else ifeq ($(OS_FSFW),freeRTOS)
CXXSRC += $(wildcard $(FRAMEWORK_PATH)/osal/FreeRTOS/*.cpp)
else ifeq ($(OS_FSFW),host)
CXXSRC += $(wildcard $(FRAMEWORK_PATH)/osal/host/*.cpp)
ifeq ($(OS),Windows_NT)
CXXSRC += $(wildcard $(FRAMEWORK_PATH)/osal/windows/*.cpp)
endif
else
$(error invalid OS_FSFW specified, valid OS_FSFW are rtems, linux, freeRTOS, host)
endif