首页 > 其他 > 详细

interface Gazebo and ROS.

时间:2015-06-22 11:07:34      阅读:240      评论:0      收藏:0      [点我收藏+]

CMakeLists.txt

cmake_minimum_required(VERSION 2.8.3)
project(YOURROBOT_gazebo_plugins)

find_package(catkin REQUIRED COMPONENTS
  gazebo_ros
)

# Depend on system install of Gazebo
find_package(gazebo REQUIRED)

include_directories(include ${catkin_INCLUDE_DIRS} ${GAZEBO_INCLUDE_DIRS} ${SDFormat_INCLUDE_DIRS})

# Build whatever you need here
add_library(...) # TODO

catkin_package(
    DEPENDS
      gazebo_ros
    CATKIN_DEPENDS
    INCLUDE_DIRS
    LIBRARIES
)

package.xml

<build_depend>gazebo_ros</build_depend>
<run_depend>gazebo_ros</run_depend>


interface Gazebo and ROS.

原文:http://blog.csdn.net/dxuehui/article/details/46591781

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!