esp_netif_lora/CMakeLists.txt

10 lines
307 B
Text
Raw Normal View History

2023-12-30 00:08:35 -05:00
message("CMAKE_CURRENT_LIST_DIR is ${CMAKE_CURRENT_LIST_DIR}")
2023-12-28 21:14:40 -05:00
idf_component_register(SRCS
2023-12-30 00:08:35 -05:00
"main/esp_netif_lora.c"
"./components/esp32-lora/main/esp32-lora.c"
2023-12-28 21:14:40 -05:00
2023-12-30 00:08:35 -05:00
REQUIRES esp_netif driver
2023-12-28 21:14:40 -05:00
2023-12-30 00:08:35 -05:00
INCLUDE_DIRS "include" "./components/esp32-lora/include/" "${IDF_PATH}/components/driver/include/esp_private"
2023-12-28 21:14:40 -05:00
)