refactor(esp_tee): Add local components in TEE examples via idf_component.yml

This commit is contained in:
Laukik Hase
2025-01-08 15:04:30 +05:30
parent b88f30a099
commit 8f117c7f4c
20 changed files with 50 additions and 47 deletions
@@ -4,7 +4,9 @@ cmake_minimum_required(VERSION 3.16)
include($ENV{IDF_PATH}/tools/cmake/project.cmake)
# Including the example service calls
# For registering custom secure services for the example
include(${CMAKE_CURRENT_LIST_DIR}/components/example_secure_service/tee_project.cmake)
# "Trim" the build. Include the minimal set of components, main, and anything it depends on.
idf_build_set_property(MINIMAL_BUILD ON)
project(tee_basic)
@@ -1,2 +1,3 @@
idf_component_register(SRCS "tee_main.c"
INCLUDE_DIRS "")
INCLUDE_DIRS ""
PRIV_REQUIRES esp_tee mbedtls)