Cleaning CMAke
[apps/low-level-can-service.git] / can-config-generator / 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(can-config-generator)
22
23         # Define project Targets
24         add_executable(can-config-generator
25                 src/main.cpp
26                 src/openxc/message_set.cpp
27                 src/openxc/can_bus.cpp
28                 src/openxc/can_message.cpp
29                 src/openxc/command.cpp
30                 src/openxc/diagnostic_message.cpp
31                 src/openxc/mapping.cpp
32                 src/openxc/signal.cpp)
33
34         # Library dependencies (include updates automatically)
35         TARGET_LINK_LIBRARIES(can-config-generator
36                 ${link_libraries}
37         )
38
39         # installation directory
40         INSTALL(TARGETS can-config-generator
41                 RUNTIME DESTINATION ${BINDINGS_INSTALL_DIR})