mirror of
https://github.com/p2r3/bareiron.git
synced 2025-10-01 23:25:09 +02:00
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 ".")
|