Your ROOT_URL in app.ini is https://git.ondrovo.com/ but you are visiting http://159.69.29.240:49153/electro/reflower/blame/commit/6021778498f29b5c9f566883b5383fe07cb5fb95/CMakeLists.txt You should set ROOT_URL correctly, otherwise the web may not work correctly.
esp32 firmware for a toaster reflow oven WIP!!!!!
reflower/CMakeLists.txt

11 lines
368 B

5 years ago
# The following 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.5)
set(CMAKE_C_COMPILER xtensa-esp32-elf-gcc)
set(CMAKE_CXX_COMPILER xtensa-esp32-elf-g++)
set(CMAKE_ASM_COMPILER xtensa-esp32-elf-as)
include($ENV{IDF_PATH}/tools/cmake/project.cmake)
project(hello-world)