diff options
author | Aaditya Dhruv <[email protected]> | 2025-05-04 21:08:42 -0500 |
---|---|---|
committer | Aaditya Dhruv <[email protected]> | 2025-05-04 21:08:42 -0500 |
commit | 457c0d46c06c53e6d8e00391a1a4aa23c4c31ca0 (patch) | |
tree | 9a95d3421f53e2822beee40d957a640fa1b7dbca /CMakeLists.txt |
Init
Barebones repository to control a LED connected to a GPIO pin, and read
sensor data from the ADC GPIO pin
Diffstat (limited to 'CMakeLists.txt')
-rw-r--r-- | CMakeLists.txt | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/CMakeLists.txt b/CMakeLists.txt new file mode 100644 index 0000000..4a1669c --- /dev/null +++ b/CMakeLists.txt @@ -0,0 +1,6 @@ +# The following five lines of boilerplate have to be in your project's +# CMakeLists in this exact order for cmake to work correctly +cmake_minimum_required(VERSION 3.16) + +include($ENV{IDF_PATH}/tools/cmake/project.cmake) +project(sprayduck) |