swh:1:snp:78e145aa8174e576786284475a76cf6f187b3475
Raw File
Tip revision: 6aab09cc50e61e6f6f6ff679f81a0180be4e4c2a authored by Laurent Rineau on 20 June 2018, 15:18:50 UTC
Merge pull request #3179 from MaelRL/T3-Fix_doc-GF
Tip revision: 6aab09c
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