//----------------------------------------------------------------------// // This is just a small sample application for testing the makefile. //----------------------------------------------------------------------// #include #include #include typedef CGAL::Cartesian< double > R; typedef CGAL::Point_2< R > Point; int main() { Point p(0, 0); CGAL::set_ascii_mode(std::cout); std::cout << "p = " << p << std::endl; return 0; }