2024-05-15 06:53:04 -04:00
|
|
|
idf_build_get_property(target IDF_TARGET)
|
|
|
|
|
2024-01-16 04:14:28 -05:00
|
|
|
set(srcs)
|
|
|
|
|
|
|
|
set(public_include "include")
|
|
|
|
|
2024-05-15 06:53:04 -04:00
|
|
|
set(priv_requires "esp_driver_gpio")
|
|
|
|
|
|
|
|
set(requires)
|
|
|
|
|
2024-01-16 04:14:28 -05:00
|
|
|
if(CONFIG_SOC_ISP_SUPPORTED)
|
2024-04-10 23:12:26 -04:00
|
|
|
list(APPEND srcs "src/isp_core.c"
|
2024-05-31 13:50:25 -04:00
|
|
|
"src/isp_af.c"
|
2024-05-31 13:50:25 -04:00
|
|
|
"src/isp_ccm.c"
|
2024-07-07 21:57:08 -04:00
|
|
|
"src/isp_awb.c"
|
2024-07-22 10:08:02 -04:00
|
|
|
"src/isp_ae.c"
|
2024-06-05 05:01:12 -04:00
|
|
|
"src/isp_gamma.c"
|
|
|
|
"src/isp_hist.c")
|
2024-01-16 04:14:28 -05:00
|
|
|
endif()
|
|
|
|
|
2024-05-20 22:21:49 -04:00
|
|
|
if(CONFIG_SOC_ISP_BF_SUPPORTED)
|
|
|
|
list(APPEND srcs "src/isp_bf.c")
|
|
|
|
endif()
|
|
|
|
|
2024-08-27 04:53:36 -04:00
|
|
|
if(CONFIG_SOC_ISP_DEMOSAIC_SUPPORTED)
|
|
|
|
list(APPEND srcs "src/isp_demosaic.c")
|
|
|
|
endif()
|
|
|
|
|
2024-07-24 03:47:48 -04:00
|
|
|
if(CONFIG_SOC_ISP_SHARPEN_SUPPORTED)
|
|
|
|
list(APPEND srcs "src/isp_sharpen.c")
|
|
|
|
endif()
|
|
|
|
|
2024-09-02 03:42:10 -04:00
|
|
|
if(CONFIG_SOC_ISP_COLOR_SUPPORTED)
|
|
|
|
list(APPEND srcs "src/isp_color.c")
|
|
|
|
endif()
|
|
|
|
|
2024-05-15 06:53:04 -04:00
|
|
|
if(NOT ${target} STREQUAL "linux")
|
|
|
|
list(APPEND requires esp_mm)
|
|
|
|
endif()
|
|
|
|
|
2024-01-16 04:14:28 -05:00
|
|
|
idf_component_register(SRCS ${srcs}
|
|
|
|
INCLUDE_DIRS ${public_include}
|
2024-05-15 06:53:04 -04:00
|
|
|
REQUIRES ${requires}
|
|
|
|
PRIV_REQUIRES ${priv_requires}
|
2024-07-24 03:47:48 -04:00
|
|
|
LDFRAGMENTS "linker.lf"
|
2024-01-16 04:14:28 -05:00
|
|
|
)
|