qpc/ports/msp430/CMakeLists.txt
MMS 340b6bbd92 7.3.4
updated QV, QK for MSP430
removed the unsupported esp-idf port
Cmake support
2024-03-21 14:05:45 -04:00

11 lines
313 B
CMake

# ports/msp430
if(QPC_CFG_UNIT_TEST)
target_include_directories(qpc PUBLIC qutest)
else()
if(NOT KERNEL MATCHES "q[vk]")
message(WARNING "Kernel ${KERNEL} is not supported! Falling back to QV kernel")
set(KERNEL qv)
endif()
target_include_directories(qpc PUBLIC ${KERNEL})
endif()