Merged revisions 56833 via svnmerge from

svn+ssh://lrineau@scm.gforge.inria.fr/svn/cgal/branches/CGAL-3.6-branch

........
  r56833 | lrineau | 2010-06-17 12:02:47 +0200 (Thu, 17 Jun 2010) | 4 lines
  
  Move the message "CGAL_Core needs GMP, cannot be configured." to the place
  where CGAL_NO_CORE is set. That is more compatible with the disabling of
  Core under 64 bits (on the trunk).
........
This commit is contained in:
Laurent Rineau 2010-06-17 10:04:25 +00:00
parent 6405de3c08
commit 18f49da592
2 changed files with 1 additions and 2 deletions

View File

@ -7,6 +7,7 @@ endif( WITH_GMP )
if( NOT GMP_FOUND )
set(CGAL_NO_CORE ON)
message( STATUS "CGAL_Core needs GMP, cannot be configured.")
endif( NOT GMP_FOUND )
option ( WITH_LEDA "Use the LEDA number types if available." OFF )

View File

@ -13,8 +13,6 @@ endmacro()
if(NOT CGAL_NO_CORE)
configure_component( CGALCore Core )
else(NOT CGAL_NO_CORE)
message( STATUS "CGAL_Core needs GMP, cannot be configured.")
endif(NOT CGAL_NO_CORE)
configure_component( CGALimageIO ImageIO )