Merge branch 'feature/trim_the_build_of_test_apps_of_esp_adc' into 'master'

Trim the build components

Closes IDF-7459

See merge request espressif/esp-idf!24143
This commit is contained in:
morris
2023-06-13 17:36:09 +08:00
64 changed files with 130 additions and 7 deletions
@@ -1,5 +1,8 @@
# This is the project CMakeLists.txt file for the test subproject
cmake_minimum_required(VERSION 3.16)
# "Trim" the build. Include the minimal set of components, main, and anything it depends on.
set(COMPONENTS main)
include($ENV{IDF_PATH}/tools/cmake/project.cmake)
project(touch_sensor_v2_test)
@@ -1,3 +1,4 @@
idf_component_register(SRCS "test_app_main.c" "test_touch_v2.c" "touch_scope.c"
PRIV_REQUIRES unity driver
WHOLE_ARCHIVE
)