Skip to content

Commit

Permalink
Fix path for matter_shell.cpp. Was wrong since last week Silabs folde…
Browse files Browse the repository at this point in the history
…r restructure (#23785)
  • Loading branch information
jmartinez-silabs authored and pull[bot] committed Nov 15, 2023
1 parent 6bd8a97 commit 3095948
Showing 1 changed file with 9 additions and 4 deletions.
13 changes: 9 additions & 4 deletions examples/platform/silabs/efr32/BUILD.gn
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,8 @@ import("${chip_root}/src/lib/lib.gni")
import("${chip_root}/src/platform/device.gni")
import("${efr32_sdk_build_root}/efr32_sdk.gni")

silabs_common_plat_dir = "${chip_root}/examples/platform/silabs"

config("chip_examples_project_config") {
include_dirs = [ "project_include" ]

Expand Down Expand Up @@ -60,8 +62,11 @@ source_set("efr-matter-shell") {
if (chip_build_libshell) {
defines = [ "ENABLE_CHIP_SHELL" ]

sources = [ "matter_shell.cpp" ]
include_dirs = [ "." ]
sources = [ "${silabs_common_plat_dir}/matter_shell.cpp" ]
include_dirs = [
".",
"${silabs_common_plat_dir}",
]

public_deps = [
"${chip_root}/examples/shell/shell_common:shell_common",
Expand All @@ -82,8 +87,8 @@ config("attestation-credentials-config") {

source_set("efr32-attestation-credentials") {
sources = [
"../SilabsDeviceAttestationCreds.cpp",
"../SilabsDeviceAttestationCreds.h",
"${silabs_common_plat_dir}/SilabsDeviceAttestationCreds.cpp",
"${silabs_common_plat_dir}/SilabsDeviceAttestationCreds.h",
]

public_deps = [
Expand Down

0 comments on commit 3095948

Please sign in to comment.