Added afb-helpers submodule
[apps/agl-service-can-low-level.git] / low-can-binding / CMakeLists.txt
1 ###########################################################################
2 # Copyright 2015, 2016, 2017 IoT.bzh
3 #
4 # author: Fulup Ar Foll <fulup@iot.bzh>
5 # contrib: Romain Forlot <romain.forlot@iot.bzh>
6 #
7 # Licensed under the Apache License, Version 2.0 (the "License");
8 # you may not use this file except in compliance with the License.
9 # You may obtain a copy of the License at
10 #
11 #     http://www.apache.org/licenses/LICENSE-2.0
12 #
13 # Unless required by applicable law or agreed to in writing, software
14 # distributed under the License is distributed on an "AS IS" BASIS,
15 # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
16 # See the License for the specific language governing permissions and
17 # limitations under the License.
18 ###########################################################################
19
20 # Add target to project dependency list
21 PROJECT_TARGET_ADD(low-can)
22
23         # Define project Targets
24         add_library(${TARGET_NAME} MODULE
25                 #binding/${TARGET_NAME}-hat.cpp
26                 binding/${TARGET_NAME}-cb.cpp
27                 binding/${TARGET_NAME}-socket.cpp
28                 binding/${TARGET_NAME}-subscription.cpp
29                 binding/application.cpp
30                 can/can-bus.cpp
31                 can/can-message-set.cpp
32                 can/can-message-definition.cpp
33                 can/can-message.cpp
34                 can/can-signals.cpp
35                 can/can-decoder.cpp
36                 can/can-encoder.cpp
37                 diagnostic/diagnostic-message.cpp
38                 diagnostic/diagnostic-manager.cpp
39                 diagnostic/active-diagnostic-request.cpp
40                 utils/signals.cpp
41                 utils/openxc-utils.cpp
42                 utils/timer.cpp
43                 utils/socketcan.cpp
44                 #utils/socketcan-raw.cpp
45                 utils/socketcan-bcm.cpp
46                 utils/config-parser.cpp
47                 binding/application-generated.cpp)
48
49         set(OPENAPI_DEF "binding/low-can-apidef" CACHE STRING "name and path to the JSON API definition without extension")
50         # Binder exposes a unique public entry point
51         SET_TARGET_PROPERTIES(${TARGET_NAME} PROPERTIES
52                 PREFIX "afb-"
53                 LABELS "BINDINGV3"
54                 LINK_FLAGS ${BINDINGS_LINK_FLAG}
55                 OUTPUT_NAME ${TARGET_NAME}
56         )
57
58         # Library dependencies (include updates automatically)
59         TARGET_LINK_LIBRARIES(${TARGET_NAME}
60                 ini-config
61                 openxc-message-format
62                 uds-c
63                 isotp-c
64                 bitfield-c
65                 afb-helpers
66                 ${link_libraries})
67