Skip to content

Commit

Permalink
Add missing CMake calls
Browse files Browse the repository at this point in the history
  • Loading branch information
MathewHDYT committed Sep 27, 2023
1 parent 4ab0e77 commit a9c8db9
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,4 +1,9 @@
# 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)

# Set project version
set(PROJECT_VER "0.1.1")

include($ENV{IDF_PATH}/tools/cmake/project.cmake)
project(ESP32_SEND_DATA)
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,4 +1,9 @@
# 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)

# Set project version
set(PROJECT_VER "0.1.1")

include($ENV{IDF_PATH}/tools/cmake/project.cmake)
project(ESP32_PROCESS_OTA)

0 comments on commit a9c8db9

Please sign in to comment.