Index

auto-plow / dev

A wheelchair motor-propelled battery-powered ESP32-driven remote control snow plow.

Latest Commit

{#}TimeHashSubjectAuthor#(+)(-)GPG?
8412 Jan 2023 16:048b6f76fRadio receiver handlersJosh Stockin1103G

Blob @ auto-plow / CMakeLists.txt

text/plain365 bytesdownload raw
1cmake_minimum_required(VERSION 3.16)
2include($ENV{IDF_PATH}/tools/cmake/project.cmake)
3
4set(PROJECT_NAME "espy")
5set(EXTRA_COMPONENT_DIRS "src") # use src/ instead of main/
6
7project(firmware)
8
9idf_build_set_property(COMPILE_OPTIONS "-fdiagnostics-color=always" APPEND)
10if(DEFINED DEV_MODE)
11 idf_build_set_property(COMPILE_OPTIONS "-D DEBUG_MODE" APPEND)
12endif()
13