From 7d2eedf5f9503e715ed6271274ce0331e8b700cd Mon Sep 17 00:00:00 2001 From: Lorow Date: Tue, 11 Nov 2025 22:07:30 +0100 Subject: [PATCH] Clean up extra components handling in cmake --- CMakeLists.txt | 4 ---- 1 file changed, 4 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 9e835e3..ace098a 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -2,9 +2,5 @@ cmake_minimum_required(VERSION 3.16) set(EXTRA_COMPONENT_DIRS ${CMAKE_CURRENT_LIST_DIR}/components) -if(IDF_TARGET STREQUAL "esp32s3") - list(APPEND EXTRA_COMPONENT_DIRS ${CMAKE_CURRENT_LIST_DIR}/extra_components) -endif() - include($ENV{IDF_PATH}/tools/cmake/project.cmake) project(blink)