Skip to content

Commit

Permalink
update Linear_cell_complex benchmark wrt OpenMesh
Browse files Browse the repository at this point in the history
  • Loading branch information
janetournois committed Aug 27, 2024
1 parent 3f6083e commit b5fc288
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 46 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -18,10 +18,8 @@ include_directories(BEFORE "/usr/include/libxml2/")
# add_definitions("-g")

# OpenMesh
set(OPENMESH_DIR "${CMAKE_CURRENT_SOURCE_DIR}/openmesh")
find_package(OpenMesh REQUIRED)
include_directories(${OPENMESH_INCLUDE_DIR})
link_directories(${OPENMESH_LIBRARY_DIR})
find_package(OpenMesh CONFIG REQUIRED)
include(CGAL_OpenMesh_support)

# Polyhedron
add_executable(polyhedron_performance performance_2.h polyhedron_performance.h
Expand All @@ -42,7 +40,7 @@ target_link_libraries(surface_mesh_performance surface_mesh)
# Open_mesh
add_executable(openmesh_performance performance_2.h openmesh_performance.h
openmesh_performance.cpp)
target_link_libraries(openmesh_performance ${OPENMESH_LIBRARIES})
target_link_libraries(openmesh_performance CGAL::OpenMesh_support)

# CGoGN
find_package(Qt REQUIRED)
Expand Down Expand Up @@ -91,4 +89,4 @@ target_link_libraries(
Zinri
z
${QT_LIBRARIES}
${OPENMESH_LIBRARIES})
CGAL::OpenMesh_support)

This file was deleted.

0 comments on commit b5fc288

Please sign in to comment.