forked from EXTERNAL/bareiron
9 lines
283 B
CMake
9 lines
283 B
CMake
# This file is meant for use with ESP-IDF or PlatformIO.
|
|
# Compilation for other platforms must be done manually.
|
|
|
|
FILE(GLOB_RECURSE app_sources ${CMAKE_SOURCE_DIR}/src/*.*)
|
|
|
|
idf_component_register(SRCS ${app_sources}
|
|
PRIV_REQUIRES esp_wifi nvs_flash esp_timer
|
|
INCLUDE_DIRS ".")
|