8 Star 73 Fork 20

ATShining / mkrtos-real

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
克隆/下载
kconfig.cmake 861 Bytes
一键复制 编辑 原始数据 按行查看 历史
ATShining 提交于 2024-01-18 00:48 . 优化多arch支持
message(
python3 "\n"
${CMAKE_SOURCE_DIR}/mkrtos_tool/kconfig/kconfig.py "\n"
${CMAKE_SOURCE_DIR}/Kconfig "\n"
${CMAKE_SOURCE_DIR}/build/auto.conf "\n"
${CMAKE_SOURCE_DIR}/build/autoconf.h "\n"
${CMAKE_SOURCE_DIR}/build/log.txt "\n"
${CMAKE_SOURCE_DIR}/.config "\n"
)
execute_process(
COMMAND
python3
${CMAKE_SOURCE_DIR}/mkrtos_tool/kconfig/kconfig.py
${CMAKE_SOURCE_DIR}/Kconfig
${CMAKE_SOURCE_DIR}/build/auto.conf
${CMAKE_SOURCE_DIR}/build/autoconf.h
${CMAKE_SOURCE_DIR}/build/log.txt
${CMAKE_SOURCE_DIR}/.config
WORKING_DIRECTORY ${CMAKE_SOURCE_DIR}
# The working directory is set to the app dir such that the user
# can use relative paths in CONF_FILE, e.g. CONF_FILE=nrf5.conf
RESULT_VARIABLE ret
)
if(NOT "${ret}" STREQUAL "0")
message(FATAL_ERROR "command failed with return code: ${ret}")
endif()
C
1
https://gitee.com/IsYourGod/mkrtos-real.git
git@gitee.com:IsYourGod/mkrtos-real.git
IsYourGod
mkrtos-real
mkrtos-real
master

搜索帮助