- Revert "Merge pull request #3857 from MaelRL/CGAL-Fix_duplicate_non_manifold_vertices-GF" - Revert "Merge pull request #3898 from lrineau/Mesh_3-stop_during_protection-lrineau"
9 lines
341 B
Bash
9 lines
341 B
Bash
#!/bin/bash
|
|
if [ "$1" == '--help' ]; then
|
|
echo "Usage: $0 <path to CGAL release> <path to output> <number of cores to dedicate>"
|
|
echo "Builds and packages the Polyhedron demo form the CGAL dir."
|
|
exit 0
|
|
fi
|
|
docker run --rm -v "$2":/results:Z -v "$1":/cgal:ro docker.io/cgal/bundle-3d-demo "/scripts/build.sh -j$3 && /scripts/deploy.sh"
|
|
|