Skip to content

Commit

Permalink
Adding cmake minimum required
Browse files Browse the repository at this point in the history
  • Loading branch information
MathewHDYT committed Sep 27, 2023
1 parent 438043d commit 2dc5ebe
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 0 deletions.
5 changes: 5 additions & 0 deletions examples/0014-espressif_esp32_send_data/CMakeLists.txt
Original file line number Diff line number Diff line change
@@ -1,3 +1,8 @@
# For more information about build system see
# https://docs.espressif.com/projects/esp-idf/en/latest/api-guides/build-system.html
cmake_minimum_required(VERSION 3.5)
project(ESP32_SEND_DATA)

# Specify all source files to keep the project compatible with espidf build system
idf_component_register(
SRCS
Expand Down
5 changes: 5 additions & 0 deletions examples/0015-espressif_esp32_process_OTA_MQTT/CMakeLists.txt
Original file line number Diff line number Diff line change
@@ -1,3 +1,8 @@
# For more information about build system see
# https://docs.espressif.com/projects/esp-idf/en/latest/api-guides/build-system.html
cmake_minimum_required(VERSION 3.5)
project(ESP32_PROCESS_OTA)

# Specify all source files to keep the project compatible with espidf build system
idf_component_register(
SRCS
Expand Down

0 comments on commit 2dc5ebe

Please sign in to comment.