Get rid of usage of CMake module
[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
33 TARGET_INCLUDE_DIRECTORIES(${TARGET_NAME}
34         PUBLIC ${CMAKE_CURRENT_SOURCE_DIR}/../3rdparty/json
35 )
36
37 # Library dependencies (include updates automatically)
38 TARGET_LINK_LIBRARIES(${TARGET_NAME}
39         ${link_libraries}
40 )
41
42 # installation directory
43 INSTALL(TARGETS ${TARGET_NAME}
44         RUNTIME DESTINATION ${CMAKE_INSTALL_BINDIR}
45         LIBRARY DESTINATION ${CMAKE_INSTALL_LIBDIR})
46
47 # Print a helper message when every thing is finished
48 # ----------------------------------------------------
49 set(CLOSING_MESSAGE "Test with: ./src/can-config-generator -m ../tests/basic.json -o application-generated.cpp")