Skip to content

Commit 1fa9eb5

Browse files
committed
Add benchmark code in PMP
1 parent 6d958a3 commit 1fa9eb5

3 files changed

Lines changed: 858 additions & 0 deletions

File tree

Polygon_mesh_processing/benchmark/Polygon_mesh_processing/CMakeLists.txt

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -38,3 +38,12 @@ else()
3838
endif()
3939

4040
create_single_source_cgal_program("fast.cpp")
41+
42+
create_single_source_cgal_program("meshes_intersections_comparison.cpp")
43+
find_package(TBB QUIET)
44+
include(CGAL_TBB_support)
45+
if(TARGET CGAL::TBB_support)
46+
target_link_libraries(meshes_intersections_comparison PRIVATE CGAL::TBB_support)
47+
else()
48+
message(STATUS "NOTICE: Intel TBB was not found. Sequential code will be used.")
49+
endif()

0 commit comments

Comments
 (0)