mirror of
https://github.com/espressif/esp-idf.git
synced 2025-08-08 04:02:27 +00:00
36 lines
896 B
CMake
36 lines
896 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 esp_psram)
|
|
endif()
|
|
|
|
idf_component_register(SRCS ${srcs}
|
|
INCLUDE_DIRS ${public_include}
|
|
PRIV_REQUIRES "${priv_requires}"
|
|
)
|