forked from erik-nelson/blam
-
Notifications
You must be signed in to change notification settings - Fork 0
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
Erik Nelson
committed
Feb 12, 2016
0 parents
commit bf82046
Showing
5 changed files
with
82 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,12 @@ | ||
- git: | ||
local-name: octomap_msgs | ||
uri: [email protected]:erik-nelson/octomap_msgs.git | ||
version: develop | ||
- git: | ||
local-name: octomap_ros | ||
uri: [email protected]:erik-nelson/octomap_ros.git | ||
version: develop | ||
- git: | ||
local-name: octomap_server | ||
uri: [email protected]:erik-nelson/octomap_server.git | ||
version: develop |
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,24 @@ | ||
#!/bin/bash | ||
|
||
TOP_DIR="$(cd "$( dirname "${BASH_SOURCE[0]}" )" && pwd )" | ||
|
||
echo 'Creating the dry workspace' | ||
cd ${TOP_DIR}/dry | ||
if [ ! -d "./src" ]; then | ||
wstool init src | ||
fi | ||
wstool merge -t src prism-dry.rosinstall | ||
wstool up -t src | ||
catkin_make_isolated --install --cmake-args -DCMAKE_BUILD_TYPE=Release | ||
touch ${TOP_DIR}/dry/install_isolated/.catkin | ||
source ${TOP_DIR}/dry/install_isolated/setup.bash | ||
|
||
echo 'Creating the wet workspace' | ||
cd ${TOP_DIR}/wet | ||
if [ ! -d "./src" ]; then | ||
wstool init src | ||
fi | ||
wstool merge -t src prism-wet.rosinstall | ||
wstool up -t src | ||
catkin_make --cmake-args -DCMAKE_BUILD_TYPE=Release | ||
source ${TOP_DIR}/wet/devel/setup.bash |
Binary file not shown.
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,40 @@ | ||
- git: | ||
local-name: geometry_utils | ||
uri: [email protected]:erik-nelson/geometry_utils.git | ||
version: develop | ||
- git: | ||
local-name: parameter_utils | ||
uri: [email protected]:erik-nelson/parameter_utils.git | ||
version: develop | ||
- git: | ||
local-name: measurement_synchronizer | ||
uri: [email protected]:erik-nelson/measurement_synchronizer.git | ||
version: develop | ||
- git: | ||
local-name: point_cloud_filter | ||
uri: [email protected]:erik-nelson/point_cloud_filter.git | ||
version: develop | ||
- git: | ||
local-name: point_cloud_localization | ||
uri: [email protected]:erik-nelson/point_cloud_localization.git | ||
version: develop | ||
- git: | ||
local-name: point_cloud_mapper | ||
uri: [email protected]:erik-nelson/point_cloud_mapper.git | ||
version: develop | ||
- git: | ||
local-name: point_cloud_odometry | ||
uri: [email protected]:erik-nelson/point_cloud_odometry.git | ||
version: develop | ||
- git: | ||
local-name: point_cloud_visualizer | ||
uri: [email protected]:erik-nelson/point_cloud_visualizer.git | ||
version: develop | ||
- git: | ||
local-name: prism_slam | ||
uri: [email protected]:erik-nelson/prism_slam.git | ||
version: develop | ||
- git: | ||
local-name: prism_example | ||
uri: [email protected]:erik-nelson/prism_example.git | ||
version: develop |
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,6 @@ | ||
#!/bin/zsh | ||
|
||
TOP_DIR="$( cd "$( dirname "${BASH_SOURCE[0]}" )" && pwd )" | ||
|
||
source ${TOP_DIR}/dry/install_isolated/setup.zsh | ||
source ${TOP_DIR}/wet/devel/setup.zsh --extend |