cgal/Weights/test/Weights/CMakeLists.txt

23 lines
1.2 KiB
CMake

cmake_minimum_required(VERSION 3.12...3.31)
project(Weights_Tests)
find_package(CGAL REQUIRED COMPONENTS Core)
create_single_source_cgal_program("test_uniform_weights.cpp")
create_single_source_cgal_program("test_shepard_weights.cpp")
create_single_source_cgal_program("test_inverse_distance_weights.cpp")
create_single_source_cgal_program("test_three_point_family_weights.cpp")
create_single_source_cgal_program("test_projected_weights.cpp")
create_single_source_cgal_program("test_wachspress_weights.cpp")
create_single_source_cgal_program("test_authalic_weights.cpp")
create_single_source_cgal_program("test_mean_value_weights.cpp")
create_single_source_cgal_program("test_tangent_weights.cpp")
create_single_source_cgal_program("test_discrete_harmonic_weights.cpp")
create_single_source_cgal_program("test_cotangent_weights.cpp")
create_single_source_cgal_program("test_uniform_region_weights.cpp")
create_single_source_cgal_program("test_triangular_region_weights.cpp")
create_single_source_cgal_program("test_barycentric_region_weights.cpp")
create_single_source_cgal_program("test_voronoi_region_weights.cpp")
create_single_source_cgal_program("test_mixed_voronoi_region_weights.cpp")