mirror of https://github.com/CGAL/cgal
Changing #include <bla> to #include "include/bla"
This commit is contained in:
parent
c154c56089
commit
ce3efc997b
|
|
@ -22,7 +22,7 @@ int main(int argc, char* argv[])
|
|||
#include <CGAL/Arr_circles_real_traits.h>
|
||||
#include <CGAL/leda_real.h>
|
||||
|
||||
#include <Circles_traits_test_base.h>
|
||||
#include "include/Circles_traits_test_base.h"
|
||||
|
||||
typedef leda_real NT;
|
||||
typedef CGAL::Arr_circles_real_traits<NT> Traits;
|
||||
|
|
|
|||
|
|
@ -17,7 +17,7 @@ int main(int argc, char* argv[])
|
|||
|
||||
#include <CGAL/leda_rational.h>
|
||||
#include <CGAL/Arr_leda_polyline_traits.h>
|
||||
#include <Polyline_traits_test.h>
|
||||
#include "include/Polyline_traits_test.h"
|
||||
|
||||
typedef CGAL::Arr_leda_polyline_traits<> Traits;
|
||||
|
||||
|
|
|
|||
|
|
@ -17,7 +17,7 @@ int main(int argc, char* argv[])
|
|||
#include <CGAL/Arr_leda_segment_exact_traits.h>
|
||||
#include <CGAL/leda_rational.h>
|
||||
|
||||
#include <Segment_traits_test.h>
|
||||
#include "include/Segment_traits_test.h"
|
||||
|
||||
typedef leda_rational NT;
|
||||
typedef CGAL::Arr_leda_segment_exact_traits Traits;
|
||||
|
|
|
|||
|
|
@ -1,7 +1,7 @@
|
|||
#include <CGAL/Cartesian.h>
|
||||
|
||||
#include <CGAL/Arr_polyline_traits.h>
|
||||
#include <Polyline_traits_test.h>
|
||||
#include "include/Polyline_traits_test.h"
|
||||
#include <CGAL/Quotient.h>
|
||||
|
||||
typedef CGAL::Quotient<int> NT;
|
||||
|
|
|
|||
|
|
@ -16,7 +16,7 @@ int main(int argc, char* argv[])
|
|||
#else
|
||||
|
||||
#include <CGAL/leda_real.h>
|
||||
#include <Segment_circle_traits_test.h>
|
||||
#include "include/Segment_circle_traits_test.h"
|
||||
#include <CGAL/Arr_segment_circle_traits.h>
|
||||
|
||||
typedef leda_real NT;
|
||||
|
|
|
|||
|
|
@ -2,7 +2,7 @@
|
|||
#include <CGAL/Arr_segment_exact_traits.h>
|
||||
#include <CGAL/Quotient.h>
|
||||
|
||||
#include <Segment_traits_test.h>
|
||||
#include "include/Segment_traits_test.h"
|
||||
|
||||
typedef CGAL::Quotient<int> NT;
|
||||
typedef CGAL::Cartesian<NT> R;
|
||||
|
|
|
|||
Loading…
Reference in New Issue