Skip to content

Commit

Permalink
Created first Gazebo plugin
Browse files Browse the repository at this point in the history
  • Loading branch information
MikeS96 committed Jul 6, 2020
1 parent 9702402 commit 01bb26d
Show file tree
Hide file tree
Showing 38 changed files with 12,186 additions and 0 deletions.
11 changes: 11 additions & 0 deletions gazebo_basics/myrobot/CMakeLists.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
cmake_minimum_required(VERSION 2.8 FATAL_ERROR)

find_package(gazebo REQUIRED)
include_directories(${GAZEBO_INCLUDE_DIRS})
link_directories(${GAZEBO_LIBRARY_DIRS})
list(APPEND CMAKE_CXX_FLAGS "${GAZEBO_CXX_FLAGS}")

add_library(hello SHARED script/hello.cpp)
target_link_libraries(hello ${GAZEBO_LIBRARIES})

# export GAZEBO_PLUGIN_PATH=${GAZEBO_PLUGIN_PATH}:/home/sherlock/Desktop/robotics_software_nd/gazebo_basics/myrobot/build
Loading

0 comments on commit 01bb26d

Please sign in to comment.