summaryrefslogtreecommitdiff
path: root/examples/build_system/cmake/cpu/msp430.cmake
blob: 584ec57412c242ce50c305c61017f1a17ff75b70 (plain)
1
2
3
4
5
6
7
8
9
10
if (TOOLCHAIN STREQUAL "gcc")
  set(FREERTOS_PORT GCC_MSP430F449 CACHE INTERNAL "")

elseif (TOOLCHAIN STREQUAL "clang")
  message(FATAL_ERROR "Clang is not supported for this target")

elseif (TOOLCHAIN STREQUAL "iar")
  set(FREERTOS_PORT IAR_MSP430 CACHE INTERNAL "")

endif ()