-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
0 parents
commit a6b1c80
Showing
26 changed files
with
17,471 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 | ||
) |
Oops, something went wrong.