Three doc should not be built by default in public releases

This commit is contained in:
Sébastien Loriot 2020-04-13 11:34:02 +02:00
parent 9d3b16edf4
commit d3082b1141
1 changed files with 6 additions and 0 deletions

View File

@ -339,6 +339,12 @@ else()
endforeach()
endif()
option(CGAL_BUILD_THREE_DOC "Build the documentation of the Three package" OFF)
if (NOT CGAL_BUILD_THREE_DOC)
list(REMOVE_ITEM CGAL_DOC_PACKAGES "Three")
endif()
foreach(package ${CGAL_DOC_PACKAGES})
configure_doxygen_package(${package})
endforeach()