mirror of
https://github.com/espressif/esp-idf
synced 2025-03-20 14:39:14 -04:00
13 lines
264 B
CMake
13 lines
264 B
CMake
set(srcs)
|
|
|
|
set(public_include "include")
|
|
|
|
if(CONFIG_SOC_ISP_SUPPORTED)
|
|
list(APPEND srcs "src/isp.c"
|
|
"src/isp_af.c")
|
|
endif()
|
|
|
|
idf_component_register(SRCS ${srcs}
|
|
INCLUDE_DIRS ${public_include}
|
|
)
|