forked from jf---/python-fcl
-
Notifications
You must be signed in to change notification settings - Fork 58
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
upgrade to fcl 0.7.0, octomap 1.9.8 (#51)
- Loading branch information
Showing
9 changed files
with
35 additions
and
63 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
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
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
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
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 |
---|---|---|
@@ -1,41 +1,44 @@ | ||
# exit immediately on any failed step | ||
set -xe | ||
|
||
mkdir -p deps | ||
cd deps | ||
get eigen | ||
|
||
curl -OL https://gitlab.com/libeigen/eigen/-/archive/3.3.9/eigen-3.3.9.tar.gz | ||
tar -zxf eigen-3.3.9.tar.gz | ||
|
||
rm -rf libccd | ||
git clone --depth 1 --branch v2.1 https://github.com/danfis/libccd.git | ||
|
||
rm -rf octomap | ||
git clone --depth 1 --branch v1.8.0 https://github.com/OctoMap/octomap.git | ||
git clone --depth 1 --branch v1.9.8 https://github.com/OctoMap/octomap.git | ||
|
||
rm -rf fcl | ||
git clone --depth 1 --branch v0.6.1 https://github.com/flexible-collision-library/fcl.git | ||
git clone --depth 1 --branch v0.7.0 https://github.com/ambi-robotics/fcl.git | ||
|
||
echo "Install eigen" | ||
# Install eigen | ||
cmake -B build -S eigen-3.3.9 | ||
cmake --install build | ||
|
||
echo "Build and install libccd" | ||
# Build and install libccd | ||
cd libccd | ||
cmake . | ||
make -j4 | ||
make install | ||
cd .. | ||
|
||
echo "Build and install octomap" | ||
# Build and install octomap | ||
cd octomap | ||
cmake . | ||
cmake . -D CMAKE_BUILD_TYPE=Release -D BUILD_OCTOVIS_SUBPROJECT=OFF -D BUILD_DYNAMICETD3D_SUBPROJECT=OFF | ||
make -j4 | ||
make install | ||
cd .. | ||
|
||
echo "Build and install fcl" | ||
# Build and install fcl | ||
cd fcl | ||
cmake . | ||
make -j4 | ||
make install | ||
cd .. | ||
|
||
cd .. | ||
cd .. |
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
This file was deleted.
Oops, something went wrong.
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
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 |
---|---|---|
@@ -1 +1 @@ | ||
__version__ = "0.6.11" | ||
__version__ = "0.7.0" |