From 86ddeef94d34e577c4e26fb10e5936a6363bf82c Mon Sep 17 00:00:00 2001 From: billyuanyk Date: Sat, 21 Mar 2026 14:00:48 +0700 Subject: [PATCH] fix traced not found vendor 3rd header --- traced/CMakeLists.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/traced/CMakeLists.txt b/traced/CMakeLists.txt index c034bb0..b49d050 100644 --- a/traced/CMakeLists.txt +++ b/traced/CMakeLists.txt @@ -46,6 +46,6 @@ if(CONFIG_TRACED) if(NOT "${CONFIG_TRACE_VAR_SECTION}" STREQUAL "") target_compile_options(traced PRIVATE -DTRACE_VAR_SECTION="${CONFIG_TRACE_VAR_SECTION}") endif() - target_include_directories(traced PRIVATE ${INCLUDE_DIRS}) + target_include_directories(traced PRIVATE ${INCLUDE_DIRS} ${VENDOR_THIRD_PARTY_DRIVER_INCDIR}) target_include_directories(traced PUBLIC ${CMAKE_CURRENT_LIST_DIR}/inc) endif() \ No newline at end of file -- Gitee