We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent d27d65e commit cfd1551Copy full SHA for cfd1551
src/app/BUILD.gn
@@ -97,8 +97,12 @@ source_set("paths") {
97
source_set("global-attributes") {
98
sources = [ "GlobalAttributes.h" ]
99
100
- # This also depends on zap-generated code which is currently impossible to split outs
101
- public_deps = [ "${chip_root}/src/lib/support" ]
+ # This also depends on zap-generated code which is currently impossible to split out
+ # as a dependency
102
+ public_deps = [
103
+ ":app_config",
104
+ "${chip_root}/src/lib/support",
105
+ ]
106
}
107
108
source_set("pre-encoded-value") {
src/app/GlobalAttributes.h
@@ -18,6 +18,7 @@
18
#pragma once
19
20
#include <app-common/zap-generated/ids/Attributes.h>
21
+#include <app/AppConfig.h>
22
#include <lib/support/CodeUtils.h>
23
24
namespace chip {
0 commit comments