//----------------------------------------------------------------------// // This is just a small sample application for testing the makefile. //----------------------------------------------------------------------// #include #include #include #include typedef CGAL_Cartesian R; typedef CGAL_Point_2 Point; int main() { Point p(0,0); CGAL_set_ascii_mode(cout); cout << "p = " << p << endl; }