From 088f01caf147331609fbb3cd7dd6e0c67e03f0a4 Mon Sep 17 00:00:00 2001 From: Marc Lepage <67919234+mlepage-google@users.noreply.github.com> Date: Tue, 29 Mar 2022 10:28:31 -0400 Subject: [PATCH] Add privilege-storage to cmake files (#16736) --- examples/lighting-app/telink/CMakeLists.txt | 1 + src/app/chip_data_model.cmake | 1 + 2 files changed, 2 insertions(+) diff --git a/examples/lighting-app/telink/CMakeLists.txt b/examples/lighting-app/telink/CMakeLists.txt index 11dda596a84df7..2b3b2df946fd42 100644 --- a/examples/lighting-app/telink/CMakeLists.txt +++ b/examples/lighting-app/telink/CMakeLists.txt @@ -70,6 +70,7 @@ target_sources(app PRIVATE ${CHIP_ROOT}/src/app/util/ember-print.cpp ${CHIP_ROOT}/src/app/util/error-mapping.cpp ${CHIP_ROOT}/src/app/util/message.cpp + ${CHIP_ROOT}/src/app/util/privilege-storage.cpp ${CHIP_ROOT}/src/app/util/util.cpp ${CHIP_ROOT}/src/app/server/EchoHandler.cpp ${CHIP_ROOT}/src/app/server/Dnssd.cpp diff --git a/src/app/chip_data_model.cmake b/src/app/chip_data_model.cmake index 3a5b591018b3bf..a96999b4565f86 100644 --- a/src/app/chip_data_model.cmake +++ b/src/app/chip_data_model.cmake @@ -88,6 +88,7 @@ function(chip_configure_data_model APP_TARGET) ${CHIP_APP_BASE_DIR}/util/ember-print.cpp ${CHIP_APP_BASE_DIR}/util/error-mapping.cpp ${CHIP_APP_BASE_DIR}/util/message.cpp + ${CHIP_APP_BASE_DIR}/util/privilege-storage.cpp ${CHIP_APP_BASE_DIR}/util/util.cpp ) endfunction()