11 lines
439 B
CMake
11 lines
439 B
CMake
file(GLOB_RECURSE MY_LIB_SOURCES
|
|
"ESP32epdx/src/*.cpp"
|
|
"ESP32epdx/src/GUI/*.cpp"
|
|
"pubsubclient/src/*.cpp")
|
|
|
|
idf_component_register(
|
|
#SRCS "main.cpp" "EPD.cpp" "wifi_helper.cpp" "mqtt.cpp" ${MY_LIB_SOURCES}
|
|
#INCLUDE_DIRS "" "ESP32epdx/src" "ESP32epdx/src/GUI" "pubsubclient/src"
|
|
SRCS "main.cpp" "EPD.cpp" "wifi_helper.c" "mqtt_helper.c" ${MY_LIB_SOURCES}
|
|
INCLUDE_DIRS "" "ESP32epdx/src" "ESP32epdx/src/GUI"
|
|
)
|