https://github.com/CGAL/cgal
Revision fff92e003922b655676e2e1bd6dd9a7a67ba0ee9 authored by Laurent Rineau on 01 June 2018, 15:16:17 UTC, committed by Laurent Rineau on 01 June 2018, 15:16:17 UTC
Triangulation_23: fix wrong return type in spatial_sort functor
2 parent s 5d0858a + 8ac412c
Raw File
Tip revision: fff92e003922b655676e2e1bd6dd9a7a67ba0ee9 authored by Laurent Rineau on 01 June 2018, 15:16:17 UTC
Merge pull request #3122 from MaelRL/T23-Fix_functor_return_type-GF
Tip revision: fff92e0
CMakeLists.txt
# Top level CMakeLists.txt for CGAL-branchbuild
message( "== CMake setup ==" )
project(CGAL CXX C)

# Minimal version of CMake:
cmake_minimum_required(VERSION 2.8.11)

set( CGAL_BRANCH_BUILD ON CACHE INTERNAL "Create CGAL from a Git branch" FORCE)

include(${CMAKE_SOURCE_DIR}/Installation/cmake/modules/CGAL_SCM.cmake)

# add option for duplicate file detection
option( CGAL_REPORT_DUPLICATE_FILES "Switch on to start (naive) detection of duplicate source- and headerfiles in packages" OFF)

message( "== CMake setup (DONE) ==\n" )

# Enable testing with BUILD_TESTING
option(BUILD_TESTING "Build the testing tree." OFF)
include(CTest)

# and finally start actual build
add_subdirectory( Installation )
add_subdirectory( Documentation/doc)
back to top