https://github.com/CGAL/cgal
Revision 9e388204e856faf410f4f369a44d3130276d3c7e authored by Jane Tournois on 23 June 2017, 09:33:21 UTC, committed by Jane Tournois on 03 August 2017, 14:09:52 UTC
1 parent da4b263
Raw File
Tip revision: 9e388204e856faf410f4f369a44d3130276d3c7e authored by Jane Tournois on 23 June 2017, 09:33:21 UTC
use Side_of_triangle_mesh in Polyhedral_mesh_domain_3
Tip revision: 9e38820
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