path of boost header relative to the version of boost

This commit is contained in:
Sébastien Loriot 2013-06-07 07:57:45 +02:00
parent a541518c01
commit cdab9daa57
1 changed files with 6 additions and 2 deletions

View File

@ -8,8 +8,12 @@
#include <iostream>
#include <fstream>
//#include <boost/property_map/vector_property_map.hpp>
#include <CGAL/property_map.h>
#include <boost/version.hpp>
#if BOOST_VERSION >= 104000
#include <boost/property_map/vector_property_map.hpp>
#else
#include <boost/vector_property_map.hpp>
#endif
typedef CGAL::Simple_cartesian<double> Kernel;
typedef Kernel::Point_3 Point_3;