# Created by the script cgal_create_CMakeLists
# This is the CMake script for compiling a set of CGAL applications.

cmake_minimum_required(VERSION 3.12...3.31)
project(Surface_mesh_decomposition_Tests)

# CGAL and its components
find_package(CGAL REQUIRED)
create_single_source_cgal_program("test_acd.cpp")

find_package(TBB QUIET)
include(CGAL_TBB_support)
if(TARGET CGAL::TBB_support)
  target_link_libraries(test_acd PRIVATE CGAL::TBB_support)
endif()

