From cbf5aa6fbc63ef6595c4ca7a2e665d1c73c346ca Mon Sep 17 00:00:00 2001 From: Rander Wang Date: Tue, 28 Sep 2021 15:33:34 +0800 Subject: [PATCH] ipc4: fix ipc4 build failed Ipc4 checks manifest in fw binary, so it needs to use header files in rimage Signed-off-by: Rander Wang --- src/ipc/ipc4/CMakeLists.txt | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/ipc/ipc4/CMakeLists.txt b/src/ipc/ipc4/CMakeLists.txt index 5cea199b3..7324c8cf4 100644 --- a/src/ipc/ipc4/CMakeLists.txt +++ b/src/ipc/ipc4/CMakeLists.txt @@ -5,3 +5,5 @@ add_local_sources(sof handler.c helper.c ) + +target_include_directories(sof_options INTERFACE ${PROJECT_SOURCE_DIR}/rimage/src/include)