first commit

This commit is contained in:
2025-02-19 07:32:23 +00:00
commit dba34f2bf7
1984 changed files with 201824 additions and 0 deletions

View File

@ -0,0 +1 @@
cmd='/opt/homebrew/bin/cmake;-DSDKCONFIG=/Users/james/Development/psionrevo/esp/uart_async_rxtxtasks/sdkconfig;-DIDF_PATH=/Users/james/Development/psionrevo/esp/esp-idf;-DIDF_TARGET=esp32c6;-DPYTHON_DEPS_CHECKED=1;-DPYTHON=/Users/james/.espressif/python_env/idf5.4_py3.13_env/bin/python;-DEXTRA_COMPONENT_DIRS=/Users/james/Development/psionrevo/esp/esp-idf/components/bootloader;-DPROJECT_SOURCE_DIR=/Users/james/Development/psionrevo/esp/uart_async_rxtxtasks;-DIGNORE_EXTRA_COMPONENT=;-GNinja;-S;<SOURCE_DIR><SOURCE_SUBDIR>;-B;<BINARY_DIR>'

View File

@ -0,0 +1,27 @@
# Distributed under the OSI-approved BSD 3-Clause License. See accompanying
# file Copyright.txt 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 "/Users/james/Development/psionrevo/esp/esp-idf/components/bootloader/subproject")
file(MAKE_DIRECTORY "/Users/james/Development/psionrevo/esp/esp-idf/components/bootloader/subproject")
endif()
file(MAKE_DIRECTORY
"/Users/james/Development/psionrevo/esp/uart_async_rxtxtasks/build/bootloader"
"/Users/james/Development/psionrevo/esp/uart_async_rxtxtasks/build/bootloader-prefix"
"/Users/james/Development/psionrevo/esp/uart_async_rxtxtasks/build/bootloader-prefix/tmp"
"/Users/james/Development/psionrevo/esp/uart_async_rxtxtasks/build/bootloader-prefix/src/bootloader-stamp"
"/Users/james/Development/psionrevo/esp/uart_async_rxtxtasks/build/bootloader-prefix/src"
"/Users/james/Development/psionrevo/esp/uart_async_rxtxtasks/build/bootloader-prefix/src/bootloader-stamp"
)
set(configSubDirs )
foreach(subDir IN LISTS configSubDirs)
file(MAKE_DIRECTORY "/Users/james/Development/psionrevo/esp/uart_async_rxtxtasks/build/bootloader-prefix/src/bootloader-stamp/${subDir}")
endforeach()
if(cfgdir)
file(MAKE_DIRECTORY "/Users/james/Development/psionrevo/esp/uart_async_rxtxtasks/build/bootloader-prefix/src/bootloader-stamp${cfgdir}") # cfgdir has leading slash
endif()