From 6b1b5140242c01127f18f54aeab63c9c1cd59e03 Mon Sep 17 00:00:00 2001 From: Devaraj Ranganna Date: Mon, 31 Jul 2023 06:14:20 +0100 Subject: [PATCH] blinky: Fix compilation failure (#1) Add missing `app-config` interface library dependency to `freertos_config` interface library. Signed-off-by: Devaraj Ranganna --- Projects/blinky/CMakeLists.txt | 2 ++ 1 file changed, 2 insertions(+) diff --git a/Projects/blinky/CMakeLists.txt b/Projects/blinky/CMakeLists.txt index 3a2e1964..8edbcbe2 100644 --- a/Projects/blinky/CMakeLists.txt +++ b/Projects/blinky/CMakeLists.txt @@ -42,6 +42,7 @@ endif() add_subdirectory(../../Middleware/ARM ${CMAKE_BINARY_DIR}/Middleware/ARM) add_subdirectory(../../Bsp ${CMAKE_BINARY_DIR}/Bsp) +add_subdirectory(../../Config ${CMAKE_BINARY_DIR}/Config) target_compile_definitions(arm-corstone-platform-bsp INTERFACE @@ -65,6 +66,7 @@ target_compile_definitions(freertos_config target_link_libraries(freertos_config INTERFACE tfm-ns-interface + app-config ) set( FREERTOS_HEAP "3" CACHE STRING "" FORCE)