Skip to content

Commit

Permalink
rename example with shorter name
Browse files Browse the repository at this point in the history
error on windows testsuites :
"The fully qualified file name must be less than 260 characters."
  • Loading branch information
janetournois committed Dec 12, 2023
1 parent 2874c2b commit f241f4b
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 5 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -107,7 +107,7 @@ It is also possible to define the polyline features as the ones
stored as complex edges in a `Mesh_complex_3_in_triangulation_3`
(e.g. generated by the \ref PkgMesh3 package mesh generation algorithms).

\cgalExample{Tetrahedral_remeshing/mesh_and_remesh_polyhedral_domain_with_features_from_complex.cpp }
\cgalExample{Tetrahedral_remeshing/mesh_and_remesh_c3t3.cpp }


\subsection ssecEx4 Tetrahedral Remeshing After Mesh Generation
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,6 @@
\example Tetrahedral_remeshing/tetrahedral_remeshing_of_one_subdomain.cpp
\example Tetrahedral_remeshing/tetrahedral_remeshing_with_features.cpp
\example Tetrahedral_remeshing/mesh_and_remesh_polyhedral_domain_with_features.cpp
\example Tetrahedral_remeshing/mesh_and_remesh_polyhedral_domain_with_features_from_complex.cpp
\example Tetrahedral_remeshing/mesh_and_remesh_c3t3.cpp
\example Tetrahedral_remeshing/tetrahedral_remeshing_from_mesh.cpp
*/
Original file line number Diff line number Diff line change
Expand Up @@ -31,13 +31,13 @@ if(TARGET CGAL::Eigen3_support)
create_single_source_cgal_program( "mesh_and_remesh_polyhedral_domain_with_features.cpp" )
target_link_libraries(mesh_and_remesh_polyhedral_domain_with_features PUBLIC CGAL::Eigen3_support)

create_single_source_cgal_program("mesh_and_remesh_polyhedral_domain_with_features_from_complex.cpp")
target_link_libraries(mesh_and_remesh_polyhedral_domain_with_features_from_complex PUBLIC CGAL::Eigen3_support)
create_single_source_cgal_program("mesh_and_remesh_c3t3.cpp")
target_link_libraries(mesh_and_remesh_c3t3 PUBLIC CGAL::Eigen3_support)

if(CGAL_ACTIVATE_CONCURRENT_MESH_3 AND TARGET CGAL::TBB_support)
message(STATUS "Found TBB")
target_link_libraries(mesh_and_remesh_polyhedral_domain_with_features PRIVATE CGAL::TBB_support)
target_link_libraries(mesh_and_remesh_polyhedral_domain_with_features_from_complex PRIVATE CGAL::TBB_support)
target_link_libraries(mesh_and_remesh_c3t3 PRIVATE CGAL::TBB_support)
endif()
else()
message(STATUS "NOTICE: Some examples require Eigen 3.1 (or greater), and will not be compiled.")
Expand Down

0 comments on commit f241f4b

Please sign in to comment.