mirror of https://github.com/CGAL/cgal
16 lines
373 B
CMake
16 lines
373 B
CMake
cmake_minimum_required(VERSION 3.1...3.15)
|
|
project( Compact_container_benchmark )
|
|
|
|
|
|
find_package(CGAL QUIET)
|
|
|
|
if ( CGAL_FOUND )
|
|
find_package( TBB )
|
|
create_single_source_cgal_program( "cc_benchmark.cpp" )
|
|
if(TBB_FOUND)
|
|
CGAL_target_use_TBB(cc_benchmark)
|
|
endif()
|
|
else()
|
|
message(STATUS "This program requires the CGAL library, and will not be compiled.")
|
|
endif()
|