- 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
13 lines
270 B
CMake
13 lines
270 B
CMake
# Additional clean files
|
|
cmake_minimum_required(VERSION 3.16)
|
|
|
|
if("${CONFIG}" STREQUAL "" OR "${CONFIG}" STREQUAL "")
|
|
file(REMOVE_RECURSE
|
|
"bootloader.bin"
|
|
"bootloader.map"
|
|
"config/sdkconfig.cmake"
|
|
"config/sdkconfig.h"
|
|
"project_elf_src_esp32c3.c"
|
|
)
|
|
endif()
|