Skip to content

Commit

Permalink
basic version
Browse files Browse the repository at this point in the history
  • Loading branch information
StanJBrown committed Sep 26, 2016
0 parents commit a6b1c80
Show file tree
Hide file tree
Showing 26 changed files with 17,471 additions and 0 deletions.
27 changes: 27 additions & 0 deletions CMakeLists.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,27 @@
cmake_minimum_required(VERSION 2.8.3)
project(octomap_to_gazebo)
find_package(catkin REQUIRED
move_base_msgs
actionlib
)


#Prepare the catkin_package
catkin_package(
CATKIN_DEPENDS move_base_msgs actionlib
)


# Install python scripts into the correct location
# catkin_python_setup()

catkin_install_python(PROGRAMS
python_scripts/generate_world_and_contours.py
python_scripts/createGazeboWorld.py
DESTINATION ${CATKIN_PACKAGE_SHARE_DESTINATION}
)

install(DIRECTORY launch/
DESTINATION ${CATKIN_PACKAGE_SHARE_DESTINATION}/launch
PATTERN ".svn" EXCLUDE
)
Loading

0 comments on commit a6b1c80

Please sign in to comment.