-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathCMakeLists.txt
More file actions
126 lines (104 loc) · 3.02 KB
/
CMakeLists.txt
File metadata and controls
126 lines (104 loc) · 3.02 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
cmake_minimum_required(VERSION 3.5)
project(lss_ros2_control)
# Default to C99
#if(NOT CMAKE_C_STANDARD)
# set(CMAKE_C_STANDARD 99)
#endif()
# Default to C++14
#if(NOT CMAKE_CXX_STANDARD)
# set(CMAKE_CXX_STANDARD 14)
#endif()
if(CMAKE_COMPILER_IS_GNUCXX OR CMAKE_CXX_COMPILER_ID MATCHES "Clang")
add_compile_options(-Wall -Wextra)
endif()
# find dependencies
find_package(ament_cmake REQUIRED)
find_package(hardware_interface REQUIRED)
find_package(pluginlib REQUIRED)
find_package(rclcpp REQUIRED)
#find_package(rcutils REQUIRED)
#find_package(rmw REQUIRED)
find_package(diagnostic_msgs REQUIRED)
#find_package(humanoid_model_msgs)
# build lynxmotion-lss library
include(BuildLyxmotionLSS.cmake)
add_compile_options(-Wno-missing-field-initializers)
if(NOT ROS_DISTRO)
set(ROS_DISTRO $ENV{ROS_DISTRO})
endif()
if(ROS_DISTRO)
string(TOUPPER ${ROS_DISTRO} ROS_DISTRO)
add_definitions(-DROS_${ROS_DISTRO})
message(STATUS "Targeting ${ROS_DISTRO} Ros2 distro")
endif()
include_directories(include)
#if(BUILD_TESTING)
find_package(ament_lint_auto REQUIRED)
# the following line skips the linter which checks for copyrights
# uncomment the line when a copyright and license is not present in all source files
#set(ament_cmake_copyright_FOUND TRUE)
# the following line skips cpplint (only works in a git repo)
# uncomment the line when this package is not in a git repo
#set(ament_cmake_cpplint_FOUND TRUE)
# ament_lint_auto_find_test_dependencies()
#endif()
add_library(ros2_lss_bus SHARED
include/ros2_lss_bus/ros2_lss_bus.hpp
src/ros2_lss_bus.cpp
)
add_dependencies(ros2_lss_bus lynxmotion-lss)
target_link_libraries(ros2_lss_bus lss-bus-static)
add_dependencies(ros2_lss_bus lss-bus-static)
target_include_directories(ros2_lss_bus PRIVATE ${LSS_BUS_INCLUDE_DIR})
if(HAS_LIBFTDI)
target_link_libraries(ros2_lss_bus ftdi)
endif()
ament_target_dependencies(ros2_lss_bus
#rcutils
rclcpp
hardware_interface
pluginlib
diagnostic_msgs
# humanoid_model_msgs
)
#add_executable(lss_joint_states src/lss_joint_states.cpp)
#if(HAS_LIBFTDI)
# target_link_libraries(lss_joint_states ftdi)
#endif()
#target_link_libraries(lss_joint_states ${LynxmotionLSS_STATIC_LIBRARY})
#ament_target_dependencies(lss_joint_states
# "rclcpp"
# "sensor_msgs")
## EXPORTS
ament_export_targets(ros2_lss_bus_exports HAS_LIBRARY_TARGET)
pluginlib_export_plugin_description_file(hardware_interface lss_ros2_control.xml)
ament_export_include_directories(
include
)
ament_export_libraries(
ros2_lss_bus lynxmotion-lss
)
ament_export_dependencies(
hardware_interface
pluginlib
rclcpp
#humanoid_model_msgs
diagnostic_msgs
)
ament_package()
install(
TARGETS ros2_lss_bus
EXPORT ros2_lss_bus_exports
LIBRARY DESTINATION lib
ARCHIVE DESTINATION lib
RUNTIME DESTINATION bin
INCLUDES DESTINATION include
)
install(
DIRECTORY include/
DESTINATION include
)
install(
DIRECTORY config urdf launch
DESTINATION share/${PROJECT_NAME}
)