|
@@ -2,12 +2,16 @@ cmake_minimum_required(VERSION 2.8.3)
|
|
|
project(robot_bringup)
|
|
|
|
|
|
## Compile as C++11, supported in ROS Kinetic and newer
|
|
|
-# add_compile_options(-std=c++11)
|
|
|
+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)
|
|
|
+find_package(catkin REQUIRED
|
|
|
+ roscpp
|
|
|
+ ros_arduino_msgs
|
|
|
+ std_msgs
|
|
|
+ )
|
|
|
|
|
|
## System dependencies are found with CMake's conventions
|
|
|
# find_package(Boost REQUIRED COMPONENTS system)
|
|
@@ -36,14 +40,9 @@ catkin_package(
|
|
|
## Your package locations should be listed before other locations
|
|
|
include_directories(
|
|
|
# include
|
|
|
-# ${catkin_INCLUDE_DIRS}
|
|
|
+ ${catkin_INCLUDE_DIRS}
|
|
|
)
|
|
|
|
|
|
-## Declare a C++ library
|
|
|
-# add_library(${PROJECT_NAME}
|
|
|
-# src/${PROJECT_NAME}/robot_bringup.cpp
|
|
|
-# )
|
|
|
-
|
|
|
## 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
|
|
@@ -52,7 +51,7 @@ include_directories(
|
|
|
## Declare a C++ executable
|
|
|
## With catkin_make all packages are built within a single CMake context
|
|
|
## The recommended prefix ensures that target names across packages don't collide
|
|
|
-# add_executable(${PROJECT_NAME}_node src/robot_bringup_node.cpp)
|
|
|
+add_executable(get_battery_node src/get_battery.cpp)
|
|
|
|
|
|
## Rename C++ executable without prefix
|
|
|
## The above recommended prefix causes long target names, the following renames the
|
|
@@ -62,12 +61,12 @@ include_directories(
|
|
|
|
|
|
## Add cmake target dependencies of the executable
|
|
|
## same as for the library above
|
|
|
-# add_dependencies(${PROJECT_NAME}_node ${${PROJECT_NAME}_EXPORTED_TARGETS} ${catkin_EXPORTED_TARGETS})
|
|
|
+add_dependencies(get_battery_node ${${PROJECT_NAME}_EXPORTED_TARGETS} ${catkin_EXPORTED_TARGETS})
|
|
|
|
|
|
## Specify libraries to link a library or executable target against
|
|
|
-# target_link_libraries(${PROJECT_NAME}_node
|
|
|
-# ${catkin_LIBRARIES}
|
|
|
-# )
|
|
|
+target_link_libraries(get_battery_node
|
|
|
+ ${catkin_LIBRARIES}
|
|
|
+)
|
|
|
|
|
|
#############
|
|
|
## Install ##
|