mirror of https://github.com/CGAL/cgal
18 lines
666 B
CMake
18 lines
666 B
CMake
# Created by the script cgal_create_cmake_script
|
|
# This is the CMake script for compiling a CGAL application.
|
|
|
|
cmake_minimum_required(VERSION 3.12...3.29)
|
|
project(Generator_example)
|
|
|
|
find_package(CGAL REQUIRED COMPONENTS Core)
|
|
|
|
find_package(Boost COMPONENTS program_options)
|
|
if(Boost_PROGRAM_OPTIONS_FOUND)
|
|
create_single_source_cgal_program("random_grid.cpp")
|
|
create_single_source_cgal_program("random_disc_2.cpp")
|
|
target_link_libraries(random_grid PRIVATE Boost::program_options)
|
|
target_link_libraries(random_disc_2 PRIVATE Boost::program_options)
|
|
else()
|
|
message("NOTICE: The benchmarks requires Boost Program Options, and will not be compiled.")
|
|
endif()
|