fixed name clash

This commit is contained in:
Dmitry Anisimov 2021-05-21 11:28:05 +02:00
parent 3d6ffba3cd
commit 237ed3f1b9
4 changed files with 8 additions and 8 deletions

View File

@ -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_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_almost_degenerate_polygon.cpp")
@ -50,10 +50,10 @@ if(CGAL_FOUND)
target_link_libraries(test_hm_const_linear_precision PUBLIC CGAL::Eigen3_support)
create_single_source_cgal_program("test_hm_triangle.cpp")
target_link_libraries(test_hm_triangle PUBLIC CGAL::Eigen3_support)
create_single_source_cgal_program("test_projection_traits.cpp")
target_link_libraries(test_projection_traits PUBLIC CGAL::Eigen3_support)
create_single_source_cgal_program("test_all_coordinates.cpp")
target_link_libraries(test_all_coordinates PUBLIC CGAL::Eigen3_support)
create_single_source_cgal_program("test_bc_projection_traits.cpp")
target_link_libraries(test_bc_projection_traits PUBLIC CGAL::Eigen3_support)
create_single_source_cgal_program("test_bc_all_coordinates.cpp")
target_link_libraries(test_bc_all_coordinates PUBLIC CGAL::Eigen3_support)
else()
message(WARNING "Several coordinates require the Eigen library, and will not be compiled.")

View File

@ -61,6 +61,6 @@ int main() {
test_equality(mv_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;
}

View File

@ -77,6 +77,6 @@ int main() {
coordinates[0] == FT(0) && coordinates[1] == 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;
}

View File

@ -138,6 +138,6 @@ int main() {
const Point_3 query_yz(1, h, h);
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;
}