mirror of
https://github.com/QuantumLeaps/qpc.git
synced 2025-02-04 07:13:16 +08:00
11 lines
313 B
CMake
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()
|