This reverts commit eb23730432aaeeef35b85feb013942175ae504f8, reversing changes made to 1f0191190bcd9dfce903cf5af155ee114d00ac4b. Only undo the permission changes Conflicts: Polygon_mesh_processing/examples/Polygon_mesh_processing/hole_filling_example_OM.cpp Polygon_mesh_processing/include/CGAL/Polygon_mesh_processing/internal/Hole_filling/Weights.h Polygon_mesh_processing/include/CGAL/Polygon_mesh_processing/internal/fair_impl.h Polygon_mesh_processing/include/CGAL/Polygon_mesh_processing/triangulate_hole.h
10 lines
143 B
Bash
Executable File
10 lines
143 B
Bash
Executable File
#!/bin/sh
|
|
|
|
[ -r CMakeLists.txt ] || cgal_create_cmake_script
|
|
|
|
[ -r Makefile ] || cmake .
|
|
|
|
if [ $? == 0 ]; then
|
|
make -f Makefile ${1+"$@"}
|
|
fi
|