mirror of
https://github.com/QuantumLeaps/qpcpp.git
synced 2025-02-04 06:13:00 +08:00
11 lines
319 B
CMake
11 lines
319 B
CMake
# ports/msp430
|
|
if(QPCPP_CFG_UNIT_TEST)
|
|
target_include_directories(qpcpp 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(qpcpp PUBLIC ${KERNEL})
|
|
endif()
|