esp-idf/components/esp_driver_ppa/CMakeLists.txt
Song Ruo Jing 346bc077c5 feat(ppa): add PPA driver support for ESP32P4
Added doxygen
Refactored driver to malloc trans_elm memory when registering the client
Cleaned up driver
Added API check
One client now only responsible for one operation
2024-05-23 16:40:56 +08:00

12 lines
326 B
CMake

set(srcs)
set(public_include "include")
if(CONFIG_SOC_PPA_SUPPORTED)
list(APPEND srcs "src/ppa.c")
endif()
idf_component_register(SRCS ${srcs}
INCLUDE_DIRS ${public_include}
PRIV_REQUIRES esp_mm esp_pm
# LDFRAGMENTS "linker.lf"
)