10 lines
144 B
CMake
10 lines
144 B
CMake
set(REQUIRES "")
|
|
set(SRCS "")
|
|
|
|
idf_component_register(
|
|
SRCS ${SRCS}
|
|
INCLUDE_DIRS "include"
|
|
# if platform esp...
|
|
REQUIRES ${REQUIRES}
|
|
)
|
|
|