rename example - name is too long for msvc

This commit is contained in:
Jane Tournois 2025-05-02 16:07:49 +02:00
parent 2581f4fb89
commit 084f08434e
3 changed files with 3 additions and 3 deletions

View File

@ -31,7 +31,7 @@ constrained Delaunay conforming_constrained_Delaunay_triangulation_3_from_soup.
*/ */
/*! /*!
\example Constrained_triangulation_3/conforming_constrained_Delaunay_triangulation_3_from_soup_fpmap.cpp \example Constrained_triangulation_3/ccdt_3_from_soup_fpmap.cpp
@brief @brief
From a non-manifold OFF file, construct the constrained Delaunay triangulation. From a non-manifold OFF file, construct the constrained Delaunay triangulation.
*/ */

View File

@ -6,13 +6,13 @@ find_package(CGAL REQUIRED COMPONENTS Qt6)
create_single_source_cgal_program(conforming_constrained_Delaunay_triangulation_3.cpp) create_single_source_cgal_program(conforming_constrained_Delaunay_triangulation_3.cpp)
create_single_source_cgal_program(conforming_constrained_Delaunay_triangulation_3_fpmap.cpp) create_single_source_cgal_program(conforming_constrained_Delaunay_triangulation_3_fpmap.cpp)
create_single_source_cgal_program(conforming_constrained_Delaunay_triangulation_3_from_soup.cpp) create_single_source_cgal_program(conforming_constrained_Delaunay_triangulation_3_from_soup.cpp)
create_single_source_cgal_program(conforming_constrained_Delaunay_triangulation_3_from_soup_fpmap.cpp) create_single_source_cgal_program(ccdt_3_from_soup_fpmap.cpp)
create_single_source_cgal_program(remesh_constrained_Delaunay_triangulation_3.cpp) create_single_source_cgal_program(remesh_constrained_Delaunay_triangulation_3.cpp)
if(CGAL_Qt6_FOUND) if(CGAL_Qt6_FOUND)
target_link_libraries(conforming_constrained_Delaunay_triangulation_3 PUBLIC CGAL::CGAL_Basic_viewer) target_link_libraries(conforming_constrained_Delaunay_triangulation_3 PUBLIC CGAL::CGAL_Basic_viewer)
target_link_libraries(conforming_constrained_Delaunay_triangulation_3_from_soup PUBLIC CGAL::CGAL_Basic_viewer) target_link_libraries(conforming_constrained_Delaunay_triangulation_3_from_soup PUBLIC CGAL::CGAL_Basic_viewer)
target_link_libraries(conforming_constrained_Delaunay_triangulation_3_from_soup_fpmap PUBLIC CGAL::CGAL_Basic_viewer) target_link_libraries(ccdt_3_from_soup_fpmap PUBLIC CGAL::CGAL_Basic_viewer)
target_link_libraries(remesh_constrained_Delaunay_triangulation_3 PUBLIC CGAL::CGAL_Basic_viewer) target_link_libraries(remesh_constrained_Delaunay_triangulation_3 PUBLIC CGAL::CGAL_Basic_viewer)
else() else()
message(STATUS "NOTICE: The example 'conforming_constrained_Delaunay_triangulation_3' cannot draw the result without Qt6.") message(STATUS "NOTICE: The example 'conforming_constrained_Delaunay_triangulation_3' cannot draw the result without Qt6.")