From 05b5e3a98dcddeae7f3752d14c10e687e2d47088 Mon Sep 17 00:00:00 2001 From: gavanderhoorn Date: Fri, 5 Oct 2018 14:11:53 +0200 Subject: [PATCH] manifest: upgrade to version 2. And clean build script. --- CMakeLists.txt | 159 +++++++------------------------------------------ package.xml | 49 ++++++--------- 2 files changed, 40 insertions(+), 168 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 2c5c009..8e0853d 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -1,13 +1,8 @@ cmake_minimum_required(VERSION 2.8.12) project(ur_modern_driver) - add_definitions( -DROS_BUILD ) - -## Find catkin macros and libraries -## if COMPONENTS list like find_package(catkin REQUIRED COMPONENTS xyz) -## is used, also find other catkin packages find_package(catkin REQUIRED COMPONENTS hardware_interface controller_manager @@ -23,104 +18,24 @@ find_package(catkin REQUIRED COMPONENTS tf ) -## System dependencies are found with CMake's conventions -# find_package(Boost REQUIRED COMPONENTS system) - -## Uncomment this if the package has a setup.py. This macro ensures -## modules and global scripts declared therein get installed -## See http://ros.org/doc/api/catkin/html/user_guide/setup_dot_py.html -# catkin_python_setup() - -################################################ -## Declare ROS messages, services and actions ## -################################################ - -## To declare and build messages, services or actions from within this -## package, follow these steps: -## * Let MSG_DEP_SET be the set of packages whose message types you use in -## your messages/services/actions (e.g. std_msgs, actionlib_msgs, ...). -## * In the file package.xml: -## * add a build_depend tag for "message_generation" -## * add a build_depend and a run_depend tag for each package in MSG_DEP_SET -## * If MSG_DEP_SET isn't empty the following dependency has been pulled in -## but can be declared for certainty nonetheless: -## * add a run_depend tag for "message_runtime" -## * In this file (CMakeLists.txt): -## * add "message_generation" and every package in MSG_DEP_SET to -## find_package(catkin REQUIRED COMPONENTS ...) -## * add "message_runtime" and every package in MSG_DEP_SET to -## catkin_package(CATKIN_DEPENDS ...) -## * uncomment the add_*_files sections below as needed -## and list every .msg/.srv/.action file to be processed -## * uncomment the generate_messages entry below -## * add every package in MSG_DEP_SET to generate_messages(DEPENDENCIES ...) - -## Generate messages in the 'msg' folder -# add_message_files( -# FILES -# Message1.msg -# Message2.msg -# ) - -## Generate services in the 'srv' folder -# add_service_files( -# FILES -# Service1.srv -# Service2.srv -# ) - -## Generate actions in the 'action' folder -# add_action_files( -# FILES -# Action1.action -# Action2.action -# ) - -## Generate added messages and services with any dependencies listed here -# generate_messages( -# DEPENDENCIES -# control_msgs# geometry_msgs# sensor_msgs# trajectory_msgs# ur_msgs -# ) - -################################################ -## Declare ROS dynamic reconfigure parameters ## -################################################ - -## To declare and build dynamic reconfigure parameters within this -## package, follow these steps: -## * In the file package.xml: -## * add a build_depend and a run_depend tag for "dynamic_reconfigure" -## * In this file (CMakeLists.txt): -## * add "dynamic_reconfigure" to -## find_package(catkin REQUIRED COMPONENTS ...) -## * uncomment the "generate_dynamic_reconfigure_options" section below -## and list every .cfg file to be processed - -## Generate dynamic reconfigure parameters in the 'cfg' folder -# generate_dynamic_reconfigure_options( -# cfg/DynReconf1.cfg -# cfg/DynReconf2.cfg -# ) - -################################### -## catkin specific configuration ## -################################### -## The catkin_package macro generates cmake config files for your package -## Declare things to be passed to dependent projects -## INCLUDE_DIRS: uncomment this if you package contains header files -## LIBRARIES: libraries you create in this project that dependent projects also need -## CATKIN_DEPENDS: catkin_packages dependent projects also need -## DEPENDS: system dependencies of this project that dependent projects also need catkin_package( - INCLUDE_DIRS include - LIBRARIES ur_hardware_interface - CATKIN_DEPENDS hardware_interface controller_manager actionlib control_msgs geometry_msgs roscpp sensor_msgs trajectory_msgs ur_msgs + INCLUDE_DIRS + include + LIBRARIES + ur_hardware_interface + CATKIN_DEPENDS + hardware_interface + controller_manager + actionlib + control_msgs + geometry_msgs + roscpp + sensor_msgs + trajectory_msgs + ur_msgs ) -########### -## Build ## -########### # check c++11 / c++0x include(CheckCXXCompilerFlag) @@ -143,29 +58,18 @@ if("${controller_manager_msgs_VERSION}" VERSION_LESS "0.10.0") add_definitions(-DUR_ROS_CONTROL_INTERFACE_OLD_ROS_CONTROL) endif() -## Specify additional locations of header files -## Your package locations should be listed before other locations -# include_directories(include) -include_directories(include +include_directories( + include ${catkin_INCLUDE_DIRS} ) -## Declare a C++ library - # Hardware Interface add_library(ur_hardware_interface src/ros/hardware_interface.cpp src/ros/controller.cpp) -target_link_libraries(ur_hardware_interface - ${catkin_LIBRARIES} -) +target_link_libraries(ur_hardware_interface ${catkin_LIBRARIES}) -## Add cmake target dependencies of the library -## as an example, code may need to be generated before libraries -## either from message generation or dynamic reconfigure -# add_dependencies(ur_modern_driver ${${PROJECT_NAME}_EXPORTED_TARGETS} ${catkin_EXPORTED_TARGETS}) -## Declare a C++ executable set(${PROJECT_NAME}_SOURCES src/ros/action_server.cpp src/ros/mb_publisher.cpp @@ -184,54 +88,33 @@ set(${PROJECT_NAME}_SOURCES src/tcp_socket.cpp) add_executable(ur_driver ${${PROJECT_NAME}_SOURCES} src/ros_main.cpp) - -## Add cmake target dependencies of the executable -## same as for the library above add_dependencies(ur_driver ${${PROJECT_NAME}_EXPORTED_TARGETS} ${catkin_EXPORTED_TARGETS}) - -## Specify libraries to link a library or executable target against target_link_libraries(ur_driver ur_hardware_interface ${catkin_LIBRARIES} ) -############# -## Install ## -############# -install(DIRECTORY launch/ DESTINATION ${CATKIN_PACKAGE_SHARE_DESTINATION}/launch) -install(DIRECTORY config/ DESTINATION ${CATKIN_PACKAGE_SHARE_DESTINATION}/config) +install(DIRECTORY launch config + DESTINATION ${CATKIN_PACKAGE_SHARE_DESTINATION}) -## Mark executables and/or libraries for installation install(TARGETS ur_driver ur_hardware_interface LIBRARY DESTINATION ${CATKIN_PACKAGE_LIB_DESTINATION} RUNTIME DESTINATION ${CATKIN_PACKAGE_BIN_DESTINATION} ) -## Mark cpp header files for installation install(DIRECTORY include/${PROJECT_NAME}/ DESTINATION ${CATKIN_PACKAGE_INCLUDE_DESTINATION} FILES_MATCHING PATTERN "*.h" ) -## Mark other files for installation (e.g. launch and bag files, etc.) -# install(FILES -# # myfile1 -# # myfile2 -# DESTINATION ${CATKIN_PACKAGE_SHARE_DESTINATION} -# ) -############# -## Testing ## -############# - - -set(${PROJECT_NAME}_TEST_SOURCES +if (CATKIN_ENABLE_TESTING) + set(${PROJECT_NAME}_TEST_SOURCES tests/ur/rt_state.cpp tests/ur/master_board.cpp tests/ur/robot_mode.cpp) -if (CATKIN_ENABLE_TESTING) catkin_add_gtest(ur_modern_driver_test ${${PROJECT_NAME}_SOURCES} ${${PROJECT_NAME}_TEST_SOURCES} tests/main.cpp) target_link_libraries(ur_modern_driver_test ur_hardware_interface ${catkin_LIBRARIES}) endif() diff --git a/package.xml b/package.xml index 64b41b5..3f4ec46 100644 --- a/package.xml +++ b/package.xml @@ -1,5 +1,6 @@ - + + ur_modern_driver 0.1.0 The new driver for Universal Robots UR3, UR5 and UR10 robots with CB2 and CB3 controllers. @@ -14,36 +15,24 @@ catkin - hardware_interface - controller_manager - actionlib - control_msgs - geometry_msgs - industrial_msgs - roscpp - sensor_msgs - trajectory_msgs - ur_msgs - tf - std_srvs + hardware_interface + controller_manager + actionlib + control_msgs + geometry_msgs + industrial_msgs + roscpp + sensor_msgs + trajectory_msgs + ur_msgs + tf + std_srvs - hardware_interface - controller_manager - force_torque_sensor_controller - joint_state_controller - joint_trajectory_controller - actionlib - control_msgs - geometry_msgs - industrial_msgs - roscpp - sensor_msgs - trajectory_msgs - ur_msgs - ur_description - tf - std_srvs - robot_state_publisher + force_torque_sensor_controller + joint_state_controller + joint_trajectory_controller + ur_description + robot_state_publisher rosunit