Merge branch 'ci/test_limit_main_cleanup' into 'master'

ci(test_apps): limit dependencies for misc test_apps

See merge request espressif/esp-idf!29088
This commit is contained in:
Marius Vikhammer
2024-02-21 09:26:25 +08:00
13 changed files with 15 additions and 4 deletions
@@ -2,5 +2,7 @@
# in this exact order for cmake to work correctly
cmake_minimum_required(VERSION 3.16)
set(COMPONENTS main)
include($ENV{IDF_PATH}/tools/cmake/project.cmake)
project(hal_i2c)
@@ -1,4 +1,5 @@
set(srcs "hal_i2c_main.c")
idf_component_register(SRCS ${srcs}
INCLUDE_DIRS ".")
INCLUDE_DIRS "."
PRIV_REQUIRES hal_i2c)