mirror of
https://github.com/espressif/esp-idf.git
synced 2026-04-27 19:13:21 +00:00
38 lines
984 B
CMake
38 lines
984 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()
|
|
|
|
set(requires esp_hal_jpeg)
|
|
if(${target} STREQUAL "linux")
|
|
set(priv_requires "")
|
|
else()
|
|
set(priv_requires esp_mm esp_pm esp_psram esp_driver_dma)
|
|
endif()
|
|
|
|
idf_component_register(SRCS ${srcs}
|
|
INCLUDE_DIRS ${public_include}
|
|
PRIV_REQUIRES "${priv_requires}"
|
|
REQUIRES "${requires}"
|
|
)
|