Add management of version and new decoder signature.
[src/low-level-can-generator.git] / src / CMakeLists.txt
1 ###########################################################################
2 # Copyright 2015, 2016, 2017 IoT.bzh
3 #
4 # author: Romain Forlot <romain.forlot@iot.bzh>
5 #
6 # Licensed under the Apache License, Version 2.0 (the "License");
7 # you may not use this file except in compliance with the License.
8 # You may obtain a copy of the License at
9 #
10 #     http://www.apache.org/licenses/LICENSE-2.0
11 #
12 # Unless required by applicable law or agreed to in writing, software
13 # distributed under the License is distributed on an "AS IS" BASIS,
14 # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
15 # See the License for the specific language governing permissions and
16 # limitations under the License.
17 ###########################################################################
18
19 # Add target to project dependency list
20 set(TARGET_NAME can-config-generator)
21
22 # Define project Targets
23 add_executable(${TARGET_NAME}
24         main.cpp
25         openxc/message_set.cpp
26         openxc/can_bus.cpp
27         openxc/can_message.cpp
28         openxc/command.cpp
29         openxc/diagnostic_message.cpp
30         openxc/mapping.cpp
31         openxc/signal.cpp
32         openxc/decoder.cpp
33         )
34
35 TARGET_INCLUDE_DIRECTORIES(${TARGET_NAME}
36         PUBLIC ${CMAKE_CURRENT_SOURCE_DIR}/../3rdparty/json
37 )
38
39 # Library dependencies (include updates automatically)
40 TARGET_LINK_LIBRARIES(${TARGET_NAME}
41         ${link_libraries}
42 )
43
44 # installation directory
45 INSTALL(TARGETS ${TARGET_NAME}
46         RUNTIME DESTINATION ${CMAKE_INSTALL_BINDIR}
47         LIBRARY DESTINATION ${CMAKE_INSTALL_LIBDIR})
48
49 # Print a helper message when every thing is finished
50 # ----------------------------------------------------
51 set(CLOSING_MESSAGE "Test with: ./src/can-config-generator -m ../tests/basic.json -o application-generated.cpp")