From 456172b13543ffca74767147104d091d7638cade Mon Sep 17 00:00:00 2001 From: xshuqun <77948861+xshuqun@users.noreply.github.com> Date: Fri, 31 May 2024 10:20:59 +0800 Subject: [PATCH] [build] fix build issue with GlobalAttributeAccessInterface (#122) * Add ember-global-attribute-access-interface.cpp and ember-io-storage.cpp into build --- .../project/amebad/make/chip_main/air_purifier_app/Makefile | 2 ++ .../matter/project/amebad/make/chip_main/aircon_port/Makefile | 2 ++ .../project/amebad/make/chip_main/all_clusters_app/Makefile | 2 ++ .../matter/project/amebad/make/chip_main/bridge_dm_app/Makefile | 2 ++ .../matter/project/amebad/make/chip_main/bridge_port/Makefile | 2 ++ .../project/amebad/make/chip_main/dishwasher_port/Makefile | 2 ++ .../project/amebad/make/chip_main/laundrywasher_port/Makefile | 2 ++ .../project/amebad/make/chip_main/light_switch_app/Makefile | 2 ++ .../matter/project/amebad/make/chip_main/lighting_app/Makefile | 2 ++ .../project/amebad/make/chip_main/lighting_dm_app/Makefile | 2 ++ .../matter/project/amebad/make/chip_main/lighting_port/Makefile | 2 ++ .../project/amebad/make/chip_main/ota_requestor_app/Makefile | 2 ++ .../project/amebad/make/chip_main/refrigerator_port/Makefile | 2 ++ .../project/amebad/make/chip_main/thermostat_port/Makefile | 2 ++ 14 files changed, 28 insertions(+) diff --git a/component/common/application/matter/project/amebad/make/chip_main/air_purifier_app/Makefile b/component/common/application/matter/project/amebad/make/chip_main/air_purifier_app/Makefile index 1fe5b810..a5acd155 100644 --- a/component/common/application/matter/project/amebad/make/chip_main/air_purifier_app/Makefile +++ b/component/common/application/matter/project/amebad/make/chip_main/air_purifier_app/Makefile @@ -100,6 +100,8 @@ CPPSRC += $(CHIPDIR)/src/app/util/attribute-table.cpp CPPSRC += $(CHIPDIR)/src/app/util/binding-table.cpp CPPSRC += $(CHIPDIR)/src/app/util/DataModelHandler.cpp CPPSRC += $(CHIPDIR)/src/app/util/ember-compatibility-functions.cpp +CPPSRC += $(CHIPDIR)/src/app/util/ember-global-attribute-access-interface.cpp +CPPSRC += $(CHIPDIR)/src/app/util/ember-io-storage.cpp CPPSRC += $(CHIPDIR)/src/app/util/generic-callback-stubs.cpp CPPSRC += $(CHIPDIR)/src/app/util/util.cpp CPPSRC += $(CHIPDIR)/src/app/util/privilege-storage.cpp diff --git a/component/common/application/matter/project/amebad/make/chip_main/aircon_port/Makefile b/component/common/application/matter/project/amebad/make/chip_main/aircon_port/Makefile index 4d9f8639..55162505 100644 --- a/component/common/application/matter/project/amebad/make/chip_main/aircon_port/Makefile +++ b/component/common/application/matter/project/amebad/make/chip_main/aircon_port/Makefile @@ -104,6 +104,8 @@ CPPSRC += $(CHIPDIR)/src/app/util/attribute-table.cpp CPPSRC += $(CHIPDIR)/src/app/util/binding-table.cpp CPPSRC += $(CHIPDIR)/src/app/util/DataModelHandler.cpp CPPSRC += $(CHIPDIR)/src/app/util/ember-compatibility-functions.cpp +CPPSRC += $(CHIPDIR)/src/app/util/ember-global-attribute-access-interface.cpp +CPPSRC += $(CHIPDIR)/src/app/util/ember-io-storage.cpp CPPSRC += $(CHIPDIR)/src/app/util/generic-callback-stubs.cpp CPPSRC += $(CHIPDIR)/src/app/util/util.cpp CPPSRC += $(CHIPDIR)/src/app/util/privilege-storage.cpp diff --git a/component/common/application/matter/project/amebad/make/chip_main/all_clusters_app/Makefile b/component/common/application/matter/project/amebad/make/chip_main/all_clusters_app/Makefile index 07803b23..752814b6 100644 --- a/component/common/application/matter/project/amebad/make/chip_main/all_clusters_app/Makefile +++ b/component/common/application/matter/project/amebad/make/chip_main/all_clusters_app/Makefile @@ -105,6 +105,8 @@ CPPSRC += $(CHIPDIR)/src/app/util/attribute-table.cpp CPPSRC += $(CHIPDIR)/src/app/util/binding-table.cpp CPPSRC += $(CHIPDIR)/src/app/util/DataModelHandler.cpp CPPSRC += $(CHIPDIR)/src/app/util/ember-compatibility-functions.cpp +CPPSRC += $(CHIPDIR)/src/app/util/ember-global-attribute-access-interface.cpp +CPPSRC += $(CHIPDIR)/src/app/util/ember-io-storage.cpp CPPSRC += $(CHIPDIR)/src/app/util/generic-callback-stubs.cpp CPPSRC += $(CHIPDIR)/src/app/util/util.cpp CPPSRC += $(CHIPDIR)/src/app/util/privilege-storage.cpp diff --git a/component/common/application/matter/project/amebad/make/chip_main/bridge_dm_app/Makefile b/component/common/application/matter/project/amebad/make/chip_main/bridge_dm_app/Makefile index 8e22455e..16b2ba3c 100644 --- a/component/common/application/matter/project/amebad/make/chip_main/bridge_dm_app/Makefile +++ b/component/common/application/matter/project/amebad/make/chip_main/bridge_dm_app/Makefile @@ -107,6 +107,8 @@ CPPSRC += $(CHIPDIR)/src/app/util/attribute-table.cpp CPPSRC += $(CHIPDIR)/src/app/util/binding-table.cpp CPPSRC += $(CHIPDIR)/src/app/util/DataModelHandler.cpp CPPSRC += $(CHIPDIR)/src/app/util/ember-compatibility-functions.cpp +CPPSRC += $(CHIPDIR)/src/app/util/ember-global-attribute-access-interface.cpp +CPPSRC += $(CHIPDIR)/src/app/util/ember-io-storage.cpp CPPSRC += $(CHIPDIR)/src/app/util/generic-callback-stubs.cpp CPPSRC += $(CHIPDIR)/src/app/util/util.cpp CPPSRC += $(CHIPDIR)/src/app/util/privilege-storage.cpp diff --git a/component/common/application/matter/project/amebad/make/chip_main/bridge_port/Makefile b/component/common/application/matter/project/amebad/make/chip_main/bridge_port/Makefile index 61016494..2e811ced 100644 --- a/component/common/application/matter/project/amebad/make/chip_main/bridge_port/Makefile +++ b/component/common/application/matter/project/amebad/make/chip_main/bridge_port/Makefile @@ -107,6 +107,8 @@ CPPSRC += $(CHIPDIR)/src/app/util/attribute-table.cpp CPPSRC += $(CHIPDIR)/src/app/util/binding-table.cpp CPPSRC += $(CHIPDIR)/src/app/util/DataModelHandler.cpp CPPSRC += $(CHIPDIR)/src/app/util/ember-compatibility-functions.cpp +CPPSRC += $(CHIPDIR)/src/app/util/ember-global-attribute-access-interface.cpp +CPPSRC += $(CHIPDIR)/src/app/util/ember-io-storage.cpp CPPSRC += $(CHIPDIR)/src/app/util/generic-callback-stubs.cpp CPPSRC += $(CHIPDIR)/src/app/util/util.cpp CPPSRC += $(CHIPDIR)/src/app/util/privilege-storage.cpp diff --git a/component/common/application/matter/project/amebad/make/chip_main/dishwasher_port/Makefile b/component/common/application/matter/project/amebad/make/chip_main/dishwasher_port/Makefile index 084c38d0..e0327ad1 100644 --- a/component/common/application/matter/project/amebad/make/chip_main/dishwasher_port/Makefile +++ b/component/common/application/matter/project/amebad/make/chip_main/dishwasher_port/Makefile @@ -108,6 +108,8 @@ CPPSRC += $(CHIPDIR)/src/app/util/attribute-table.cpp CPPSRC += $(CHIPDIR)/src/app/util/binding-table.cpp CPPSRC += $(CHIPDIR)/src/app/util/DataModelHandler.cpp CPPSRC += $(CHIPDIR)/src/app/util/ember-compatibility-functions.cpp +CPPSRC += $(CHIPDIR)/src/app/util/ember-global-attribute-access-interface.cpp +CPPSRC += $(CHIPDIR)/src/app/util/ember-io-storage.cpp CPPSRC += $(CHIPDIR)/src/app/util/generic-callback-stubs.cpp CPPSRC += $(CHIPDIR)/src/app/util/util.cpp CPPSRC += $(CHIPDIR)/src/app/util/privilege-storage.cpp diff --git a/component/common/application/matter/project/amebad/make/chip_main/laundrywasher_port/Makefile b/component/common/application/matter/project/amebad/make/chip_main/laundrywasher_port/Makefile index 33c73547..8ffecc22 100644 --- a/component/common/application/matter/project/amebad/make/chip_main/laundrywasher_port/Makefile +++ b/component/common/application/matter/project/amebad/make/chip_main/laundrywasher_port/Makefile @@ -108,6 +108,8 @@ CPPSRC += $(CHIPDIR)/src/app/util/attribute-table.cpp CPPSRC += $(CHIPDIR)/src/app/util/binding-table.cpp CPPSRC += $(CHIPDIR)/src/app/util/DataModelHandler.cpp CPPSRC += $(CHIPDIR)/src/app/util/ember-compatibility-functions.cpp +CPPSRC += $(CHIPDIR)/src/app/util/ember-global-attribute-access-interface.cpp +CPPSRC += $(CHIPDIR)/src/app/util/ember-io-storage.cpp CPPSRC += $(CHIPDIR)/src/app/util/generic-callback-stubs.cpp CPPSRC += $(CHIPDIR)/src/app/util/util.cpp CPPSRC += $(CHIPDIR)/src/app/util/privilege-storage.cpp diff --git a/component/common/application/matter/project/amebad/make/chip_main/light_switch_app/Makefile b/component/common/application/matter/project/amebad/make/chip_main/light_switch_app/Makefile index 79ec4baa..ab185466 100644 --- a/component/common/application/matter/project/amebad/make/chip_main/light_switch_app/Makefile +++ b/component/common/application/matter/project/amebad/make/chip_main/light_switch_app/Makefile @@ -103,6 +103,8 @@ CPPSRC += $(CHIPDIR)/src/app/util/attribute-table.cpp CPPSRC += $(CHIPDIR)/src/app/util/binding-table.cpp CPPSRC += $(CHIPDIR)/src/app/util/DataModelHandler.cpp CPPSRC += $(CHIPDIR)/src/app/util/ember-compatibility-functions.cpp +CPPSRC += $(CHIPDIR)/src/app/util/ember-global-attribute-access-interface.cpp +CPPSRC += $(CHIPDIR)/src/app/util/ember-io-storage.cpp CPPSRC += $(CHIPDIR)/src/app/util/generic-callback-stubs.cpp CPPSRC += $(CHIPDIR)/src/app/util/util.cpp CPPSRC += $(CHIPDIR)/src/app/util/privilege-storage.cpp diff --git a/component/common/application/matter/project/amebad/make/chip_main/lighting_app/Makefile b/component/common/application/matter/project/amebad/make/chip_main/lighting_app/Makefile index f5d4759d..bbbd5701 100644 --- a/component/common/application/matter/project/amebad/make/chip_main/lighting_app/Makefile +++ b/component/common/application/matter/project/amebad/make/chip_main/lighting_app/Makefile @@ -102,6 +102,8 @@ CPPSRC += $(CHIPDIR)/src/app/util/attribute-table.cpp CPPSRC += $(CHIPDIR)/src/app/util/binding-table.cpp CPPSRC += $(CHIPDIR)/src/app/util/DataModelHandler.cpp CPPSRC += $(CHIPDIR)/src/app/util/ember-compatibility-functions.cpp +CPPSRC += $(CHIPDIR)/src/app/util/ember-global-attribute-access-interface.cpp +CPPSRC += $(CHIPDIR)/src/app/util/ember-io-storage.cpp CPPSRC += $(CHIPDIR)/src/app/util/generic-callback-stubs.cpp CPPSRC += $(CHIPDIR)/src/app/util/util.cpp CPPSRC += $(CHIPDIR)/src/app/util/privilege-storage.cpp diff --git a/component/common/application/matter/project/amebad/make/chip_main/lighting_dm_app/Makefile b/component/common/application/matter/project/amebad/make/chip_main/lighting_dm_app/Makefile index d579186a..2c80b07d 100644 --- a/component/common/application/matter/project/amebad/make/chip_main/lighting_dm_app/Makefile +++ b/component/common/application/matter/project/amebad/make/chip_main/lighting_dm_app/Makefile @@ -111,6 +111,8 @@ CPPSRC += $(CHIPDIR)/src/app/util/attribute-table.cpp CPPSRC += $(CHIPDIR)/src/app/util/binding-table.cpp CPPSRC += $(CHIPDIR)/src/app/util/DataModelHandler.cpp CPPSRC += $(CHIPDIR)/src/app/util/ember-compatibility-functions.cpp +CPPSRC += $(CHIPDIR)/src/app/util/ember-global-attribute-access-interface.cpp +CPPSRC += $(CHIPDIR)/src/app/util/ember-io-storage.cpp CPPSRC += $(CHIPDIR)/src/app/util/generic-callback-stubs.cpp CPPSRC += $(CHIPDIR)/src/app/util/util.cpp CPPSRC += $(CHIPDIR)/src/app/util/privilege-storage.cpp diff --git a/component/common/application/matter/project/amebad/make/chip_main/lighting_port/Makefile b/component/common/application/matter/project/amebad/make/chip_main/lighting_port/Makefile index 1f80d15b..9ff85782 100644 --- a/component/common/application/matter/project/amebad/make/chip_main/lighting_port/Makefile +++ b/component/common/application/matter/project/amebad/make/chip_main/lighting_port/Makefile @@ -111,6 +111,8 @@ CPPSRC += $(CHIPDIR)/src/app/util/attribute-table.cpp CPPSRC += $(CHIPDIR)/src/app/util/binding-table.cpp CPPSRC += $(CHIPDIR)/src/app/util/DataModelHandler.cpp CPPSRC += $(CHIPDIR)/src/app/util/ember-compatibility-functions.cpp +CPPSRC += $(CHIPDIR)/src/app/util/ember-global-attribute-access-interface.cpp +CPPSRC += $(CHIPDIR)/src/app/util/ember-io-storage.cpp CPPSRC += $(CHIPDIR)/src/app/util/generic-callback-stubs.cpp CPPSRC += $(CHIPDIR)/src/app/util/util.cpp CPPSRC += $(CHIPDIR)/src/app/util/privilege-storage.cpp diff --git a/component/common/application/matter/project/amebad/make/chip_main/ota_requestor_app/Makefile b/component/common/application/matter/project/amebad/make/chip_main/ota_requestor_app/Makefile index d0e3df54..5b7caeea 100644 --- a/component/common/application/matter/project/amebad/make/chip_main/ota_requestor_app/Makefile +++ b/component/common/application/matter/project/amebad/make/chip_main/ota_requestor_app/Makefile @@ -94,6 +94,8 @@ CPPSRC += $(CHIPDIR)/src/app/util/binding-table.cpp #CPPSRC += $(CHIPDIR)/src/app/util/chip-message-send.cpp CPPSRC += $(CHIPDIR)/src/app/util/DataModelHandler.cpp CPPSRC += $(CHIPDIR)/src/app/util/ember-compatibility-functions.cpp +CPPSRC += $(CHIPDIR)/src/app/util/ember-global-attribute-access-interface.cpp +CPPSRC += $(CHIPDIR)/src/app/util/ember-io-storage.cpp CPPSRC += $(CHIPDIR)/src/app/util/ember-print.cpp CPPSRC += $(CHIPDIR)/src/app/util/message.cpp CPPSRC += $(CHIPDIR)/src/app/util/util.cpp diff --git a/component/common/application/matter/project/amebad/make/chip_main/refrigerator_port/Makefile b/component/common/application/matter/project/amebad/make/chip_main/refrigerator_port/Makefile index 04724033..5ecae722 100644 --- a/component/common/application/matter/project/amebad/make/chip_main/refrigerator_port/Makefile +++ b/component/common/application/matter/project/amebad/make/chip_main/refrigerator_port/Makefile @@ -111,6 +111,8 @@ CPPSRC += $(CHIPDIR)/src/app/util/attribute-table.cpp CPPSRC += $(CHIPDIR)/src/app/util/binding-table.cpp CPPSRC += $(CHIPDIR)/src/app/util/DataModelHandler.cpp CPPSRC += $(CHIPDIR)/src/app/util/ember-compatibility-functions.cpp +CPPSRC += $(CHIPDIR)/src/app/util/ember-global-attribute-access-interface.cpp +CPPSRC += $(CHIPDIR)/src/app/util/ember-io-storage.cpp CPPSRC += $(CHIPDIR)/src/app/util/generic-callback-stubs.cpp CPPSRC += $(CHIPDIR)/src/app/util/util.cpp CPPSRC += $(CHIPDIR)/src/app/util/privilege-storage.cpp diff --git a/component/common/application/matter/project/amebad/make/chip_main/thermostat_port/Makefile b/component/common/application/matter/project/amebad/make/chip_main/thermostat_port/Makefile index d1e04cc7..3b5e7a4b 100644 --- a/component/common/application/matter/project/amebad/make/chip_main/thermostat_port/Makefile +++ b/component/common/application/matter/project/amebad/make/chip_main/thermostat_port/Makefile @@ -111,6 +111,8 @@ CPPSRC += $(CHIPDIR)/src/app/util/attribute-table.cpp CPPSRC += $(CHIPDIR)/src/app/util/binding-table.cpp CPPSRC += $(CHIPDIR)/src/app/util/DataModelHandler.cpp CPPSRC += $(CHIPDIR)/src/app/util/ember-compatibility-functions.cpp +CPPSRC += $(CHIPDIR)/src/app/util/ember-global-attribute-access-interface.cpp +CPPSRC += $(CHIPDIR)/src/app/util/ember-io-storage.cpp CPPSRC += $(CHIPDIR)/src/app/util/generic-callback-stubs.cpp CPPSRC += $(CHIPDIR)/src/app/util/util.cpp CPPSRC += $(CHIPDIR)/src/app/util/privilege-storage.cpp