13 lines
240 B
CMake
13 lines
240 B
CMake
set(srcs
|
|
"src/time_service.c"
|
|
"src/time_service_events.c"
|
|
)
|
|
|
|
idf_component_register(
|
|
SRCS ${srcs}
|
|
INCLUDE_DIRS "include"
|
|
PRIV_INCLUDE_DIRS "src"
|
|
REQUIRES esp_event network
|
|
PRIV_REQUIRES esp_netif lwip freertos
|
|
)
|