added more cmakelists files

This commit is contained in:
2021-07-13 18:52:19 +02:00
parent f15352bb2f
commit f14d5edf42
5 changed files with 49 additions and 52 deletions
+4 -4
View File
@@ -1,11 +1,11 @@
# Check the OS_FSFW variable
if(${OS_FSFW} STREQUAL "freertos")
if(FSFW_OSAL MATCHES "freertos")
add_subdirectory(FreeRTOS)
elseif(${OS_FSFW} STREQUAL "rtems")
elseif(FSFW_OSAL MATCHES "rtems")
add_subdirectory(rtems)
elseif(${OS_FSFW} STREQUAL "linux")
elseif(FSFW_OSAL MATCHES "linux")
add_subdirectory(linux)
elseif(${OS_FSFW} STREQUAL "host")
elseif(FSFW_OSAL MATCHES "host")
add_subdirectory(host)
if (WIN32)
add_subdirectory(windows)