项目文件夹

文件
2026-07-13 13:04:25 +08:00

43 行
1.1 KiB
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_PAU_SUPPORTED)
list(APPEND srcs "${target}/jpeg_retention.c")
endif()
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(requires "")
set(priv_requires "")
else()
set(requires esp_hal_jpeg)
set(priv_requires esp_mm esp_pm esp_psram esp_driver_dma)
endif()
idf_component_register(SRCS ${srcs}
INCLUDE_DIRS ${public_include}
PRIV_INCLUDE_DIRS "."
PRIV_REQUIRES "${priv_requires}"
REQUIRES "${requires}"
)