2021-09-16 23:14:32 -04:00
|
|
|
set(requires "unity"
|
|
|
|
"test_utils"
|
2022-04-16 05:32:22 -04:00
|
|
|
"driver"
|
|
|
|
"esp_timer")
|
2021-09-16 23:14:32 -04:00
|
|
|
|
|
|
|
set(excludes "test_ipc_isr.c"
|
|
|
|
"test_ipc_isr.S"
|
|
|
|
"test_ipc.c")
|
|
|
|
|
|
|
|
if(IDF_TARGET STREQUAL "esp32" OR IDF_TARGET STREQUAL "esp32s3")
|
|
|
|
# If the target is esp32 or esp32s3, we can compile the IPC
|
|
|
|
# tests.
|
|
|
|
set(excludes "")
|
|
|
|
# Add a required dependency
|
|
|
|
list(APPEND requires "cmock")
|
|
|
|
endif()
|
|
|
|
|
2020-05-05 01:21:29 -04:00
|
|
|
idf_component_register(SRC_DIRS .
|
2021-09-16 23:14:32 -04:00
|
|
|
EXCLUDE_SRCS "${excludes}"
|
2020-05-05 01:21:29 -04:00
|
|
|
PRIV_INCLUDE_DIRS .
|
2021-09-16 23:14:32 -04:00
|
|
|
PRIV_REQUIRES "${requires}")
|