mirror of https://github.com/CGAL/cgal
36 lines
1.2 KiB
CMake
36 lines
1.2 KiB
CMake
cmake_minimum_required(VERSION 3.12...3.31)
|
|
project(Surface_mesh_performance)
|
|
|
|
find_package(CGAL REQUIRED)
|
|
|
|
# For profilling with gprof
|
|
#add_compile_definitions("-pg")
|
|
#SET(CMAKE_EXE_LINKER_FLAGS "${CMAKE_EXE_LINKER_FLAGS} -pg")
|
|
# add_compile_definitions("-g")
|
|
add_compile_definitions("-std=c++1y")
|
|
|
|
# Polyhedron
|
|
add_executable(polyhedron_performance performance_2.h polyhedron_performance.h
|
|
polyhedron_performance.cpp)
|
|
target_link_libraries(polyhedron_performance PRIVATE CGAL::CGAL)
|
|
|
|
# LCC_2
|
|
add_executable(lcc_performance_2 performance_2.h lcc_performance_2.h
|
|
lcc_performance_2.cpp)
|
|
target_link_libraries(lcc_performance_2 PRIVATE CGAL::CGAL)
|
|
|
|
# Surface_mesh
|
|
add_executable(
|
|
surface_mesh_performance performance_2.h surface_mesh_performance.h
|
|
surface_mesh_performance.cpp)
|
|
|
|
# Performance_2
|
|
add_executable(
|
|
performance_2 performance_2.cpp performance_2.h polyhedron_performance.h
|
|
surface_mesh_performance.h lcc_performance_2.h)
|
|
|
|
target_link_libraries(performance_2 PRIVATE CGAL::CGAL)
|
|
|
|
create_single_source_cgal_program("sm_sms.cpp")
|
|
create_single_source_cgal_program("poly_sms.cpp")
|