@@ -4,8 +4,7 @@ cmake_minimum_required(VERSION 3.16)
include($ENV{IDF_PATH}/tools/cmake/project.cmake)
-set(SDKCONFIG_DEFAULTS "$ENV{IDF_PATH}/tools/test_apps/configs/sdkconfig.debug_helpers")
-list(APPEND SDKCONFIG_DEFAULTS "sdkconfig.defaults")
+list(PREPEND SDKCONFIG_DEFAULTS "$ENV{IDF_PATH}/tools/test_apps/configs/sdkconfig.debug_helpers" "sdkconfig.defaults")
# "Trim" the build. Include the minimal set of components, main, and anything it depends on.
set(COMPONENTS main)
@@ -5,8 +5,7 @@ cmake_minimum_required(VERSION 3.16)
set(EXTRA_COMPONENT_DIRS "$ENV{IDF_PATH}/tools/unit-test-app/components")
project(esp_hw_support_unity)
project(rtc_clk)
project(test_app_security_support)
@@ -2,8 +2,7 @@
# CMakeLists in this exact order for cmake to work correctly
cmake_minimum_required(VERSION 3.16)
+list(PREPEND SDKCONFIG_DEFAULTS "$ENV{IDF_PATH}/tools/test_apps/configs/sdkconfig.debug_helpers")
@@ -1,8 +1,7 @@
#This is the project CMakeLists.txt file for the test subproject
# This is the project CMakeLists.txt file for the test subproject
project(lp_core_test)
project(ulp_fsm_test)
project(ulp_riscv_test)
@@ -3,8 +3,7 @@ cmake_minimum_required(VERSION 3.5)
-list(APPEND SDKCONFIG_DEFAULTS "$ENV{IDF_PATH}/tools/test_apps/configs/sdkconfig.debug_helpers")
@@ -7,8 +7,7 @@ To facilitiate re-use, this folder contains some of the most common ones.
These can then be added to the list of default configs in test apps:
```
Note that this must be set in the top-level project `CMakelist.txt`.