cmake_minimum_required(VERSION 2.8.3)
project(interbotix_xsarm_diagnostic_tool)

## Compile as C++11, supported in ROS Kinetic and newer
add_compile_options(-std=c++11)

## 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
  interbotix_xs_msgs
  interbotix_xsarm_control
  rosbag
  roscpp
  rospy
  rqt_plot
  sensor_msgs
)

###################################
## catkin specific configuration ##
###################################
## The catkin_package macro generates cmake config files for your package
## Declare things to be passed to dependent projects
catkin_package(
 CATKIN_DEPENDS interbotix_xs_msgs interbotix_xsarm_control rosbag roscpp rospy rqt_plot sensor_msgs
)

###########
## Build ##
###########

## Specify additional locations of header files
## Your package locations should be listed before other locations
include_directories(
  ${catkin_INCLUDE_DIRS}
)

## Declare a C++ executable
## Specify libraries to link a library or executable target against
## Add cmake target dependencies of the executable
add_executable(xsarm_diagnostic_tool src/xsarm_diagnostic_tool.cpp)
target_link_libraries(xsarm_diagnostic_tool ${catkin_LIBRARIES})
add_dependencies(xsarm_diagnostic_tool ${${PROJECT_NAME}_EXPORTED_TARGETS} ${catkin_EXPORTED_TARGETS})

add_executable(xsarm_diagnostic_listener src/xsarm_diagnostic_listener.cpp)
target_link_libraries(xsarm_diagnostic_listener ${catkin_LIBRARIES})
add_dependencies(xsarm_diagnostic_listener ${${PROJECT_NAME}_EXPORTED_TARGETS} ${catkin_EXPORTED_TARGETS})

#############
## Install ##
#############

## Mark executable scripts (Python etc.) for installation
## in contrast to setup.py, you can choose the destination
catkin_install_python(PROGRAMS
  scripts/bag2csv.py
  DESTINATION ${CATKIN_PACKAGE_BIN_DESTINATION}
)
