Lines Matching refs:build_info
3706 # build_info(<tag>... VALUE <value>... )
3707 # build_info(<tag>... PATH <path>... )
3709 # This function populates updates the build_info.yml info file with exchangable build information
3713 # build_info(devicetree files VALUE file1.dts file2.dts file3.dts)
3717 # build_info(vendor-specific foo VALUE bar)
3723 # VALUE <value>... : value(s) to place in the build_info.yml file.
3724 # PATH <path>... : path(s) to place in the build_info.yml file. All paths are converted to CMake
3727 function(build_info) function
3740 yaml_context(EXISTS NAME build_info result)
3743 if(EXISTS ${CMAKE_BINARY_DIR}/build_info.yml)
3744 yaml_load(FILE ${CMAKE_BINARY_DIR}/build_info.yml NAME build_info)
3746 yaml_create(FILE ${CMAKE_BINARY_DIR}/build_info.yml NAME build_info)
3748 yaml_set(NAME build_info KEY version VALUE "0.1.0")
3782 yaml_set(NAME build_info KEY cmake ${keys} ${type} "${values}")
5935 # build_info is not needed in script mode but still called by Zephyr CMake
5936 # modules. Therefore disable build_info(...) in when including
5938 function(build_info) function