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-01-16 04:14:28 -05:00
|
|
|
"src/isp_af.c")
|
|
|
|
endif()
|
|
|
|
|
2024-05-20 22:21:49 -04:00
|
|
|
if(CONFIG_SOC_ISP_BF_SUPPORTED)
|
|
|
|
list(APPEND srcs "src/isp_bf.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-01-16 04:14:28 -05:00
|
|
|
)
|