From 4e0cc55e4cdf98aaea2a6b7d45cb41a2ea07e23c Mon Sep 17 00:00:00 2001 From: Laurent Rineau Date: Wed, 14 Feb 2018 16:23:19 +0100 Subject: [PATCH] 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. --- Installation/cmake/modules/CGAL_Common.cmake | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/Installation/cmake/modules/CGAL_Common.cmake b/Installation/cmake/modules/CGAL_Common.cmake index 93d7aff6631..9da7a3fa9af 100644 --- a/Installation/cmake/modules/CGAL_Common.cmake +++ b/Installation/cmake/modules/CGAL_Common.cmake @@ -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)