2025-02-13 17:17:07 +08:00
|
|
|
# INCS
|
|
|
|
|
list(APPEND incs "../sal")
|
2025-02-18 17:41:45 +08:00
|
|
|
list(APPEND incs "../components/system/include")
|
2024-03-28 12:19:52 +08:00
|
|
|
|
|
|
|
|
|
2025-02-13 17:17:07 +08:00
|
|
|
# SRCS
|
|
|
|
|
list(APPEND srcs "main.c")
|
|
|
|
|
list(APPEND srcs "ota.c")
|
2024-03-28 12:19:52 +08:00
|
|
|
|
|
|
|
|
|
2025-02-13 17:17:07 +08:00
|
|
|
# idf_component_register
|
|
|
|
|
idf_component_register(
|
|
|
|
|
INCLUDE_DIRS ${incs}
|
|
|
|
|
SRCS ${srcs}
|
|
|
|
|
)
|