Skip to content

Commit f42ba66

Browse files
committed
Fix build files
1 parent 775c7bb commit f42ba66

File tree

4 files changed

+8
-6
lines changed

4 files changed

+8
-6
lines changed

src/app/clusters/actions-server/BUILD.gn

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,6 @@ static_library("actions-server") {
1818
sources = [
1919
"ActionsCluster.cpp",
2020
"ActionsCluster.h",
21-
"actions-server.h",
2221
]
2322

2423
public_deps = [

src/app/clusters/actions-server/app_config_dependent_sources.cmake

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,6 @@ TARGET_SOURCES(
1717
${APP_TARGET}
1818
PRIVATE
1919
"${CLUSTER_DIR}/actions-server.h"
20-
"${CLUSTER_DIR}/ActionsCluster.cpp"
21-
"${CLUSTER_DIR}/ActionsDelegate.h"
22-
"${CLUSTER_DIR}/ActionsStructs.h"
20+
"${CLUSTER_DIR}/CodegenIntegration.h"
21+
"${CLUSTER_DIR}/CodegenIntegration.cpp"
2322
)

src/app/clusters/actions-server/app_config_dependent_sources.gni

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,4 +11,8 @@
1111
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
1212
# See the License for the specific language governing permissions and
1313
# limitations under the License.
14-
app_config_dependent_sources = [ "CodegenIntegration.cpp" ]
14+
app_config_dependent_sources = [
15+
"CodegenIntegration.cpp",
16+
"CodegenIntegration.h",
17+
"actions-server.h",
18+
]

src/app/zap-templates/zcl/zcl.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -180,7 +180,7 @@
180180
"AdminFabricIndex",
181181
"AdminVendorId"
182182
],
183-
"Actions": ["ActionList","EndpointLists"],
183+
"Actions": ["ActionList", "EndpointLists"],
184184
"Ambient Context Sensing": ["HoldTimeLimits", "ObjectCountConfig"],
185185
"Basic Information": [
186186
"FeatureMap",

0 commit comments

Comments
 (0)