mirror of https://github.com/CGAL/cgal
rename example with shorter name
error on windows testsuites : "The fully qualified file name must be less than 260 characters."
This commit is contained in:
parent
2874c2be60
commit
f241f4b6ef
|
|
@ -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
|
||||
|
|
|
|||
|
|
@ -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
|
||||
*/
|
||||
|
|
|
|||
|
|
@ -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.")
|
||||
|
|
|
|||
Loading…
Reference in New Issue