Skip to content

Commit 9be6f66

Browse files
Include the data model code in libCHIP. (project-chip#877)
1 parent 1a27db2 commit 9be6f66

File tree

3 files changed

+63
-0
lines changed

3 files changed

+63
-0
lines changed

src/app/DataModel.am

+48
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,48 @@
1+
#
2+
# Copyright (c) 2020 Project CHIP Authors
3+
# Copyright (c) 2014-2017 Nest Labs, Inc.
4+
#
5+
# Licensed under the Apache License, Version 2.0 (the "License");
6+
# you may not use this file except in compliance with the License.
7+
# You may obtain a copy of the License at
8+
#
9+
# http://www.apache.org/licenses/LICENSE-2.0
10+
#
11+
# Unless required by applicable law or agreed to in writing, software
12+
# distributed under the License is distributed on an "AS IS" BASIS,
13+
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
14+
# See the License for the specific language governing permissions and
15+
# limitations under the License.
16+
#
17+
18+
#
19+
# Description:
20+
# This file is the GNU automake header for the CHIP Data Model layer
21+
# library sources.
22+
#
23+
# These sources are shared by other SDK makefiles and consequently
24+
# must be anchored relative to the top build directory.
25+
#
26+
27+
CHIP_BUILD_DATA_MODEL_SOURCE_FILES = \
28+
@top_builddir@/src/app/gen/gen-callback-stubs.c \
29+
@top_builddir@/src/app/gen/gen-command-handler.c \
30+
@top_builddir@/src/app/gen/gen-specs.c \
31+
@top_builddir@/src/app/plugin/binding-mock/mock.c \
32+
@top_builddir@/src/app/plugin/cluster-server-basic/basic-server.c \
33+
@top_builddir@/src/app/plugin/cluster-server-identify/identify-server.c \
34+
@top_builddir@/src/app/plugin/cluster-server-level-control/level-control-server.c \
35+
@top_builddir@/src/app/plugin/cluster-server-on-off/on-off-server.c \
36+
@top_builddir@/src/app/plugin/codec-simple/codec-simple.c \
37+
@top_builddir@/src/app/plugin/core-api/core-api.c \
38+
@top_builddir@/src/app/plugin/core-data-model/zcl-data-model.c \
39+
@top_builddir@/src/app/plugin/core-message-dispatch/dispatch.c \
40+
@top_builddir@/src/app/plugin/core-message-dispatch/general-command-handler.c \
41+
$(NULL)
42+
43+
# Excluding this one for now because it has #include syntax that does
44+
# not actually compile
45+
# plugin/core-data-model/zcl-struct.c
46+
47+
# Excluding this one because it seems to rely on stuff that's not in our tree
48+
# plugin/binding-silabs/silabs.c

src/app/Makefile.am

+11
Original file line numberDiff line numberDiff line change
@@ -29,4 +29,15 @@ SUBDIRS = \
2929
plugin \
3030
$(NULL)
3131

32+
include DataModel.am
33+
34+
lib_LIBRARIES = libCHIPDataModel.a
35+
36+
libCHIPDataModel_a_CPPFLAGS = \
37+
-I$(top_srcdir)/src/app/chip-zcl \
38+
-I$(top_srcdir)/src/app/gen \
39+
$(NULL)
40+
41+
libCHIPDataModel_a_SOURCES = $(CHIP_BUILD_DATA_MODEL_SOURCE_FILES)
42+
3243
include $(abs_top_nlbuild_autotools_dir)/automake/post.am

src/lib/Makefile.am

+4
Original file line numberDiff line numberDiff line change
@@ -36,6 +36,7 @@ include ../inet/InetLayer.am
3636
include ../system/SystemLayer.am
3737
include core/CoreLayer.am
3838
include support/SupportLayer.am
39+
include ../app/DataModel.am
3940

4041
# install headers for core layer
4142
CoreLayer_dir=$(includedir)/core
@@ -56,6 +57,8 @@ libCHIP_a_CPPFLAGS = \
5657
-I$(top_srcdir)/src/lib/core \
5758
-I$(top_srcdir)/src/lib/support \
5859
-I$(top_srcdir)/src/system \
60+
-I$(top_srcdir)/src/app/chip-zcl \
61+
-I$(top_srcdir)/src/app/gen \
5962
$(NLASSERT_CPPFLAGS) \
6063
$(NLFAULTINJECTION_CPPFLAGS) \
6164
$(NLIO_CPPFLAGS) \
@@ -68,6 +71,7 @@ libCHIP_a_SOURCES += $(CHIP_BUILD_INET_LAYER_SOURCE_FILES)
6871
libCHIP_a_SOURCES += $(CHIP_BUILD_CORE_LAYER_SOURCE_FILES)
6972
libCHIP_a_SOURCES += $(CHIP_BUILD_SUPPORT_LAYER_SOURCE_FILES)
7073
libCHIP_a_SOURCES += $(CHIP_BUILD_DEVICE_CONTROLLER_SOURCE_FILES)
74+
libCHIP_a_SOURCES += $(CHIP_BUILD_DATA_MODEL_SOURCE_FILES)
7175

7276
if CONFIG_NETWORK_LAYER_BLE
7377
libCHIP_a_SOURCES += $(CHIP_BUILD_BLE_LAYER_SOURCE_FILES)

0 commit comments

Comments
 (0)