mirror of
https://github.com/espressif/esp-idf.git
synced 2024-10-05 20:47:46 -04:00
fbe8bf89ee
There is currently a bug in the __build_resolve_and_add_req function in tools/cmake/build.cmake where the check for registered component requirements is incorrectly applied to the component itself rather than its dependencies. This issue likely originated from a typo, using component_target instead of _component_target. To prevent further confusion, _component_target has been renamed to _req_target. Fixing this revealed multiple incorrect dependencies for the Linux target, which have now been resolved by explicitly specifying the dependencies for the Linux target. Closes https://github.com/espressif/esp-idf/issues/13447 Signed-off-by: Frantisek Hrbata <frantisek.hrbata@espressif.com>
36 lines
886 B
CMake
36 lines
886 B
CMake
idf_build_get_property(target IDF_TARGET)
|
|
|
|
set(srcs)
|
|
set(public_include "include")
|
|
|
|
# JPEG related source files
|
|
if(CONFIG_SOC_JPEG_CODEC_SUPPORTED)
|
|
list(APPEND srcs
|
|
"jpeg_common.c"
|
|
"jpeg_param.c"
|
|
)
|
|
if(CONFIG_SOC_JPEG_DECODE_SUPPORTED)
|
|
list(APPEND srcs
|
|
"jpeg_parse_marker.c"
|
|
"jpeg_decode.c"
|
|
)
|
|
endif()
|
|
if(CONFIG_SOC_JPEG_ENCODE_SUPPORTED)
|
|
list(APPEND srcs
|
|
"jpeg_emit_marker.c"
|
|
"jpeg_encode.c"
|
|
)
|
|
endif()
|
|
endif()
|
|
|
|
if(${target} STREQUAL "linux")
|
|
set(priv_requires "")
|
|
else()
|
|
set(priv_requires esp_mm esp_pm)
|
|
endif()
|
|
|
|
idf_component_register(SRCS ${srcs}
|
|
INCLUDE_DIRS ${public_include}
|
|
PRIV_REQUIRES "${priv_requires}"
|
|
)
|