mirror of
https://github.com/espressif/esp-idf.git
synced 2024-10-05 20:47:46 -04:00
dba7d11096
Add new "all_component_info" dictionary into the project_description.json file. It contains information about all registered components presented in the __COMPONENT_TARGETS list. Since components in this list are not fully evaluated, because only the first stage of cmakefiles processing is done, it does not contain the same information as the "build_component_info" dictionary. The "type", "file" and "sources" variables are missing. Most of the properties are already attached to the component target, so this only adds INCLUDE_DIRS property to the target during the first cmakefiles processing stage. The "all_component_info" dict is generated in a separate function, even though the original function for "build_component_info" could be adjusted. This introduces a little bit of boilerplate, but keeps it logically separated and probably easier if we want to extend it in the future. Signed-off-by: Frantisek Hrbata <frantisek.hrbata@espressif.com>
34 lines
1.5 KiB
JSON
34 lines
1.5 KiB
JSON
{
|
|
"version": "1.1",
|
|
"project_name": "${PROJECT_NAME}",
|
|
"project_version": "${PROJECT_VER}",
|
|
"project_path": "${PROJECT_PATH}",
|
|
"idf_path": "${IDF_PATH}",
|
|
"build_dir": "${BUILD_DIR}",
|
|
"config_file": "${SDKCONFIG}",
|
|
"config_defaults": "${SDKCONFIG_DEFAULTS}",
|
|
"bootloader_elf": "${BOOTLOADER_ELF_FILE}",
|
|
"app_elf": "${PROJECT_EXECUTABLE}",
|
|
"app_bin": "${PROJECT_BIN}",
|
|
"build_type": "${PROJECT_BUILD_TYPE}",
|
|
"git_revision": "${IDF_VER}",
|
|
"target": "${CONFIG_IDF_TARGET}",
|
|
"rev": "${CONFIG_ESP32_REV_MIN}",
|
|
"min_rev": "${CONFIG_ESP_REV_MIN_FULL}",
|
|
"max_rev": "${CONFIG_ESP_REV_MAX_FULL}",
|
|
"phy_data_partition": "${CONFIG_ESP32_PHY_INIT_DATA_IN_PARTITION}",
|
|
"monitor_baud" : "${CONFIG_ESPTOOLPY_MONITOR_BAUD}",
|
|
"monitor_toolprefix": "${_CMAKE_TOOLCHAIN_PREFIX}",
|
|
"c_compiler": "${CMAKE_C_COMPILER}",
|
|
"config_environment" : {
|
|
"COMPONENT_KCONFIGS" : "${COMPONENT_KCONFIGS}",
|
|
"COMPONENT_KCONFIGS_PROJBUILD" : "${COMPONENT_KCONFIGS_PROJBUILD}"
|
|
},
|
|
"common_component_reqs": ${common_component_reqs_json},
|
|
"build_components" : ${build_components_json},
|
|
"build_component_paths" : ${build_component_paths_json},
|
|
"build_component_info" : ${build_component_info_json},
|
|
"all_component_info" : ${all_component_info_json},
|
|
"debug_prefix_map_gdbinit": "${debug_prefix_map_gdbinit}"
|
|
}
|