it blinks!!!

This commit is contained in:
2025-11-16 19:18:46 -08:00
commit d54a1ea970
1405 changed files with 151048 additions and 0 deletions

View File

@ -0,0 +1,27 @@
# Distributed under the OSI-approved BSD 3-Clause License. See accompanying
# file LICENSE.rst or https://cmake.org/licensing for details.
cmake_minimum_required(VERSION ${CMAKE_VERSION}) # this file comes with cmake
# If CMAKE_DISABLE_SOURCE_CHANGES is set to true and the source directory is an
# existing directory in our source tree, calling file(MAKE_DIRECTORY) on it
# would cause a fatal error, even though it would be a no-op.
if(NOT EXISTS "/home/nik/esp/esp-idf/components/bootloader/subproject")
file(MAKE_DIRECTORY "/home/nik/esp/esp-idf/components/bootloader/subproject")
endif()
file(MAKE_DIRECTORY
"/home/nik/repos/esp32/build/bootloader"
"/home/nik/repos/esp32/build/bootloader-prefix"
"/home/nik/repos/esp32/build/bootloader-prefix/tmp"
"/home/nik/repos/esp32/build/bootloader-prefix/src/bootloader-stamp"
"/home/nik/repos/esp32/build/bootloader-prefix/src"
"/home/nik/repos/esp32/build/bootloader-prefix/src/bootloader-stamp"
)
set(configSubDirs )
foreach(subDir IN LISTS configSubDirs)
file(MAKE_DIRECTORY "/home/nik/repos/esp32/build/bootloader-prefix/src/bootloader-stamp/${subDir}")
endforeach()
if(cfgdir)
file(MAKE_DIRECTORY "/home/nik/repos/esp32/build/bootloader-prefix/src/bootloader-stamp${cfgdir}") # cfgdir has leading slash
endif()