https://github.com/CGAL/cgal
Revision 1685eeb45b993897e03d116eb9cdd4ea65b9128e authored by Maxime Gimeno on 12 January 2017, 15:09:31 UTC, committed by Maxime Gimeno on 12 January 2017, 15:09:31 UTC
1 parent 39e48f5
Raw File
Tip revision: 1685eeb45b993897e03d116eb9cdd4ea65b9128e authored by Maxime Gimeno on 12 January 2017, 15:09:31 UTC
Adapt spheres side to the box, not the the scene's size.
Tip revision: 1685eeb
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