mirror of https://github.com/CGAL/cgal
30 lines
738 B
CMake
30 lines
738 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.1...3.15)
|
|
project( Generator_example )
|
|
|
|
|
|
|
|
find_package(CGAL QUIET COMPONENTS Core )
|
|
|
|
if ( CGAL_FOUND )
|
|
|
|
include(${CGAL_USE_FILE})
|
|
|
|
find_package(Boost REQUIRED program_options)
|
|
include_directories(${Boost_PROGRAM_OPTIONS_INCLUDE_DIR})
|
|
add_definitions( "-DCGAL_USE_BOOST_PROGRAM_OPTIONS" )
|
|
list(APPEND CGAL_3RD_PARTY_LIBRARIES ${Boost_PROGRAM_OPTIONS_LIBRARY})
|
|
|
|
create_single_source_cgal_program( "random_grid.cpp" )
|
|
create_single_source_cgal_program( "random_disc_2.cpp" )
|
|
|
|
else()
|
|
|
|
message(STATUS "This program requires the CGAL library, and will not be compiled.")
|
|
|
|
endif()
|
|
|