Revision e0010627ee6a984f05a89340b0594fe15dfc03fd authored by Sébastien Loriot on 02 January 2017, 17:14:00 UTC, committed by Sébastien Loriot on 02 January 2017, 18:25:48 UTC
in addition it become a real predicate (no construction)
1 parent 9f2d102
Raw File
cgal_build
#!/bin/sh

[ -r CMakeLists.txt ] || cgal_create_cmake_script

[ -r Makefile ] || cmake .

if [ $? == 0 ]; then
  make -f Makefile ${1+"$@"}
fi
back to top