mirror of https://github.com/CGAL/cgal
fixed name clash
This commit is contained in:
parent
3d6ffba3cd
commit
237ed3f1b9
|
|
@ -21,7 +21,7 @@ if(CGAL_FOUND)
|
||||||
|
|
||||||
create_single_source_cgal_program("test_boundary_coordinates_at_vertices.cpp")
|
create_single_source_cgal_program("test_boundary_coordinates_at_vertices.cpp")
|
||||||
create_single_source_cgal_program("test_boundary_coordinates_on_edges.cpp")
|
create_single_source_cgal_program("test_boundary_coordinates_on_edges.cpp")
|
||||||
create_single_source_cgal_program("test_cgal_polygons.cpp")
|
create_single_source_cgal_program("test_bc_cgal_polygons.cpp")
|
||||||
|
|
||||||
create_single_source_cgal_program("test_wp_dh_unit_square.cpp")
|
create_single_source_cgal_program("test_wp_dh_unit_square.cpp")
|
||||||
create_single_source_cgal_program("test_wp_almost_degenerate_polygon.cpp")
|
create_single_source_cgal_program("test_wp_almost_degenerate_polygon.cpp")
|
||||||
|
|
@ -50,10 +50,10 @@ if(CGAL_FOUND)
|
||||||
target_link_libraries(test_hm_const_linear_precision PUBLIC CGAL::Eigen3_support)
|
target_link_libraries(test_hm_const_linear_precision PUBLIC CGAL::Eigen3_support)
|
||||||
create_single_source_cgal_program("test_hm_triangle.cpp")
|
create_single_source_cgal_program("test_hm_triangle.cpp")
|
||||||
target_link_libraries(test_hm_triangle PUBLIC CGAL::Eigen3_support)
|
target_link_libraries(test_hm_triangle PUBLIC CGAL::Eigen3_support)
|
||||||
create_single_source_cgal_program("test_projection_traits.cpp")
|
create_single_source_cgal_program("test_bc_projection_traits.cpp")
|
||||||
target_link_libraries(test_projection_traits PUBLIC CGAL::Eigen3_support)
|
target_link_libraries(test_bc_projection_traits PUBLIC CGAL::Eigen3_support)
|
||||||
create_single_source_cgal_program("test_all_coordinates.cpp")
|
create_single_source_cgal_program("test_bc_all_coordinates.cpp")
|
||||||
target_link_libraries(test_all_coordinates PUBLIC CGAL::Eigen3_support)
|
target_link_libraries(test_bc_all_coordinates PUBLIC CGAL::Eigen3_support)
|
||||||
|
|
||||||
else()
|
else()
|
||||||
message(WARNING "Several coordinates require the Eigen library, and will not be compiled.")
|
message(WARNING "Several coordinates require the Eigen library, and will not be compiled.")
|
||||||
|
|
|
||||||
|
|
@ -61,6 +61,6 @@ int main() {
|
||||||
test_equality(mv_coordinates, hm_coordinates);
|
test_equality(mv_coordinates, hm_coordinates);
|
||||||
test_equality(dh_coordinates, hm_coordinates);
|
test_equality(dh_coordinates, hm_coordinates);
|
||||||
|
|
||||||
std::cout << "test_all_coordinates: PASSED" << std::endl;
|
std::cout << "test_bc_all_coordinates: PASSED" << std::endl;
|
||||||
return EXIT_SUCCESS;
|
return EXIT_SUCCESS;
|
||||||
}
|
}
|
||||||
|
|
@ -77,6 +77,6 @@ int main() {
|
||||||
coordinates[0] == FT(0) && coordinates[1] == FT(0) &&
|
coordinates[0] == FT(0) && coordinates[1] == FT(0) &&
|
||||||
coordinates[2] == FT(0) && coordinates[3] == FT(0) );
|
coordinates[2] == FT(0) && coordinates[3] == FT(0) );
|
||||||
|
|
||||||
std::cout << "test_cgal_polygons: PASSED" << std::endl;
|
std::cout << "test_bc_cgal_polygons: PASSED" << std::endl;
|
||||||
return EXIT_SUCCESS;
|
return EXIT_SUCCESS;
|
||||||
}
|
}
|
||||||
|
|
@ -138,6 +138,6 @@ int main() {
|
||||||
const Point_3 query_yz(1, h, h);
|
const Point_3 query_yz(1, h, h);
|
||||||
test_projection_traits(vertices_yz, query_yz, projection_traits_yz);
|
test_projection_traits(vertices_yz, query_yz, projection_traits_yz);
|
||||||
|
|
||||||
std::cout << "test_projection_traits: PASSED" << std::endl;
|
std::cout << "test_bc_projection_traits: PASSED" << std::endl;
|
||||||
return EXIT_SUCCESS;
|
return EXIT_SUCCESS;
|
||||||
}
|
}
|
||||||
Loading…
Reference in New Issue