11 lines
280 B
CMake
Raw Normal View History

2024-04-11 21:49:55 +07:00
if (TOOLCHAIN STREQUAL "gcc")
set(FREERTOS_PORT GCC_MSP430F449 CACHE INTERNAL "")
2024-04-17 23:08:06 +07:00
elseif (TOOLCHAIN STREQUAL "clang")
message(FATAL_ERROR "Clang is not supported for this target")
2024-04-11 21:49:55 +07:00
elseif (TOOLCHAIN STREQUAL "iar")
set(FREERTOS_PORT IAR_MSP430 CACHE INTERNAL "")
endif ()