Revision 78bbe0f356bbd5b3712d4bd69c1a64aacc3416f9 authored by Sébastien Loriot on 20 January 2017, 15:19:07 UTC, committed by Sébastien Loriot on 20 January 2017, 15:19:07 UTC
  commit 00a91ff5ce3432fdaaa4ca328a9d2bede124fd82
  Author: Sébastien Loriot <sebastien.loriot@cgal.org>
  Date:   Thu Jan 19 15:15:29 2017 +0100

      remove Nef_2 polynomial from CGAL lib
1 parent 7f0a613
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