12 lines
388 B
CMake
12 lines
388 B
CMake
file(GLOB_RECURSE MY_LIB_SOURCES
|
|
"ESP32epdx/src/*.cpp"
|
|
"ESP32epdx/src/GUI/*.cpp"
|
|
"pubsubclient/src/*.cpp",
|
|
"mpack/src/mpack/*.c",
|
|
"sha256/*.c"
|
|
)
|
|
|
|
idf_component_register(
|
|
SRCS "processor.c" "main.cpp" "EPD.cpp" "mesh_main.c" "mesh_netif.c" "mesh_msg.c" ${MY_LIB_SOURCES}
|
|
INCLUDE_DIRS "" "ESP32epdx/src" "ESP32epdx/src/GUI" "mpack/src/mpack" "sha256"
|
|
)
|