11 lines
223 B
CMake
11 lines
223 B
CMake
# Get all source files recursively from src directory
|
|
file(GLOB_RECURSE SRC_FILES "src/*.c")
|
|
|
|
idf_component_register(
|
|
SRCS ${SRC_FILES}
|
|
INCLUDE_DIRS
|
|
"include"
|
|
"include_priv"
|
|
REQUIRES esp_timer
|
|
)
|