14 lines
470 B
CMake
14 lines
470 B
CMake
# use "Generic" as CMAKE_SYSTEM_NAME
|
|
|
|
if (WITH_ZEPHYR)
|
|
set (CMAKE_SYSTEM_NAME "Generic" CACHE STRING "")
|
|
string (TOLOWER "Zephyr" PROJECT_SYSTEM)
|
|
string (TOUPPER "Zephyr" PROJECT_SYSTEM_UPPER)
|
|
if (NOT WITH_ZEPHYR_LIB)
|
|
include($ENV{ZEPHYR_BASE}/cmake/app/boilerplate.cmake NO_POLICY_SCOPE)
|
|
endif ()
|
|
if (CONFIG_CPU_CORTEX_M)
|
|
set (MACHINE "cortexm" CACHE STRING "")
|
|
endif (CONFIG_CPU_CORTEX_M)
|
|
endif (WITH_ZEPHYR)
|