mirror of
https://github.com/rstrouse/ESPSomfy-RTS.git
synced 2026-01-10 17:22:13 +01:00
This permits to develop the project more easily and efficiently than with Arduino iIDE (which is a pain) Use the latest IDF framework version Compile for esp32C5 chip
7 lines
278 B
CMake
7 lines
278 B
CMake
|
|
file(GLOB_RECURSE SRCS_CPP ${arduinowebsockets_SOURCE_DIR}/src/*.cpp)
|
|
|
|
idf_component_register(SRCS ${SRCS_CPP}
|
|
INCLUDE_DIRS "${arduinowebsockets_SOURCE_DIR}/src/"
|
|
REQUIRES "arduino-esp32" # Library requires Arduino
|
|
)
|