From 087f6a2ed6ec8969807393ad3e57a25ca702855a Mon Sep 17 00:00:00 2001 From: Mathieu Kardous Date: Thu, 24 Oct 2024 08:45:59 -0400 Subject: [PATCH] Add missing include dir --- examples/platform/silabs/shell/BUILD.gn | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/examples/platform/silabs/shell/BUILD.gn b/examples/platform/silabs/shell/BUILD.gn index fd61b663376cce..74613aeac91031 100644 --- a/examples/platform/silabs/shell/BUILD.gn +++ b/examples/platform/silabs/shell/BUILD.gn @@ -23,11 +23,17 @@ if (use_SiWx917) { shell_dependency_path = "${chip_root}/examples/platform/silabs/SiWx917" } +config("shell-config") { + include_dirs = [ "." ] +} + source_set("icd") { sources = [ "ICDShellCommands.cpp", "ICDShellCommands.h", ] + public_configs = [ ":shell-config" ] + deps = [ "${shell_dependency_path}:matter-shell" ] }