Add feature ISO TP (multi frames and peer to peer)
[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
22 PROJECT_TARGET_ADD(low-can)
23
24         # Define project Targets
25         set (SOURCES
26                 #binding/${TARGET_NAME}-hat.cpp
27                 binding/${TARGET_NAME}-cb.cpp
28                 binding/${TARGET_NAME}-subscription.cpp
29                 binding/application.cpp
30                 can/can-bus.cpp
31                 can/message-set.cpp
32                 can/message-definition.cpp
33                 can/message/message.cpp
34                 can/message/can-message.cpp
35                 can/signals.cpp
36                 can/can-decoder.cpp
37                 can/can-encoder.cpp
38                 diagnostic/diagnostic-message.cpp
39                 diagnostic/diagnostic-manager.cpp
40                 diagnostic/active-diagnostic-request.cpp
41                 utils/signals.cpp
42                 utils/openxc-utils.cpp
43                 utils/timer.cpp
44                 utils/socketcan.cpp
45                 #utils/socketcan-raw.cpp
46                 utils/socketcan-bcm.cpp
47                 utils/config-parser.cpp
48                 utils/converter.cpp
49                 binding/application-generated.cpp
50                 )
51
52
53         if(WITH_FEATURE_ISOTP)
54                 set(SOURCES_ISOTP
55                         utils/socketcan-isotp.cpp
56                 )
57         endif()
58
59
60         if(WITH_FEATURE_J1939)
61                 set(SOURCES_J1939
62                         can/message/j1939-message.cpp
63                         utils/socketcan-j1939/socketcan-j1939.cpp
64                         utils/socketcan-j1939/socketcan-j1939-data.cpp
65                         utils/socketcan-j1939/socketcan-j1939-addressclaiming.cpp
66                 )
67         endif()
68
69         add_library(${TARGET_NAME} MODULE ${SOURCES} ${SOURCES_J1939} ${SOURCES_ISOTP})
70
71         set(OPENAPI_DEF "binding/low-can-apidef" CACHE STRING "name and path to the JSON API definition without extension")
72         # Binder exposes a unique public entry point
73         SET_TARGET_PROPERTIES(${TARGET_NAME} PROPERTIES
74                 PREFIX "afb-"
75                 LABELS "BINDINGV3"
76                 LINK_FLAGS ${BINDINGS_LINK_FLAG}
77                 OUTPUT_NAME ${TARGET_NAME}
78         )
79
80         # Library dependencies (include updates automatically)
81         TARGET_LINK_LIBRARIES(${TARGET_NAME}
82                 ini-config
83                 openxc-message-format
84                 uds-c
85                 isotp-c
86                 bitfield-c
87                 afb-helpers
88                 ${link_libraries})
89