码迷,mamicode.com
首页 > 其他好文 > 详细

interface Gazebo and ROS.

时间:2015-06-22 11:10:43      阅读:136      评论: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
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!