Fix the CMake error

CMake does not like that the documentation of a CMake cache variable is
multiline. That triggers an error once the cache is re-loaded, the second
time.
This commit is contained in:
Laurent Rineau 2018-02-14 16:23:19 +01:00
parent 69ca424c5e
commit 4e0cc55e4c
1 changed files with 2 additions and 3 deletions

View File

@ -1,8 +1,7 @@
include(${CMAKE_CURRENT_LIST_DIR}/CGAL_Macros.cmake)
option(CGAL_DEV_MODE "
Activate the CGAL developers mode. \
See https://github.com/CGAL/cgal/wiki/CGAL_DEV_MODE"
option(CGAL_DEV_MODE
"Activate the CGAL developers mode. See https://github.com/CGAL/cgal/wiki/CGAL_DEV_MODE"
FALSE)
if(RUNNING_CGAL_AUTO_TEST)