mirror of https://github.com/CGAL/cgal
20 lines
490 B
CMake
20 lines
490 B
CMake
# Created by the script cgal_create_cmake_script
|
|
# This is the CMake script for compiling a CGAL application.
|
|
|
|
project (BGL_triangulation_2_Example)
|
|
|
|
set(CMAKE_ALLOW_LOOSE_LOOP_CONSTRUCTS true)
|
|
|
|
find_package(CGAL)
|
|
|
|
if ( CGAL_FOUND )
|
|
|
|
include(${CGAL_USE_FILE})
|
|
include(CreateSingleSourceCGALProgram)
|
|
|
|
create_single_source_cgal_program( dijkstra.cpp )
|
|
create_single_source_cgal_program( dijkstra_with_internal_properties.cpp )
|
|
create_single_source_cgal_program( emst.cpp )
|
|
|
|
endif()
|