- ESP32-C3 SPI slave project with ESP-NOW broadcast functionality - Raspberry Pi SPI master test tools and CLI for JSON communication - Merged src/ directory from full branch with lighting controller code - Updated Pipfile with system install scripts and ESP32 monitoring - Added comprehensive test suite for SPI communication
23 lines
1.0 KiB
CMake
23 lines
1.0 KiB
CMake
# 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 3.5)
|
|
|
|
file(MAKE_DIRECTORY
|
|
"/home/pi/esp/esp-idf/components/bootloader/subproject"
|
|
"/home/pi/lighting-controller/esp32/build/bootloader"
|
|
"/home/pi/lighting-controller/esp32/build/bootloader-prefix"
|
|
"/home/pi/lighting-controller/esp32/build/bootloader-prefix/tmp"
|
|
"/home/pi/lighting-controller/esp32/build/bootloader-prefix/src/bootloader-stamp"
|
|
"/home/pi/lighting-controller/esp32/build/bootloader-prefix/src"
|
|
"/home/pi/lighting-controller/esp32/build/bootloader-prefix/src/bootloader-stamp"
|
|
)
|
|
|
|
set(configSubDirs )
|
|
foreach(subDir IN LISTS configSubDirs)
|
|
file(MAKE_DIRECTORY "/home/pi/lighting-controller/esp32/build/bootloader-prefix/src/bootloader-stamp/${subDir}")
|
|
endforeach()
|
|
if(cfgdir)
|
|
file(MAKE_DIRECTORY "/home/pi/lighting-controller/esp32/build/bootloader-prefix/src/bootloader-stamp${cfgdir}") # cfgdir has leading slash
|
|
endif()
|