From d089b84ffc2b6ffa48b7fc367a1dcee8ad4829f3 Mon Sep 17 00:00:00 2001 From: Laurent Rineau Date: Mon, 1 Mar 2010 08:17:31 +0000 Subject: [PATCH] Merged revisions 53929,53931,53933-53940,53944-53949,53951,53954-53955,53957,53959-53960,53962,53964,53966,53969-54000,54003-54004,54008-54045,54047-54057,54059-54095,54097,54099-54228,54230-54236,54239-54247,54249-54255,54257-54260,54262-54277,54281-54283,54285-54300,54302-54308,54310-54324,54326-54352 via svnmerge from svn+ssh://lrineau@scm.gforge.inria.fr/svn/cgal/branches/CGAL-3.6-branch ........ r54352 | lrineau | 2010-03-01 09:08:13 +0100 (Mon, 01 Mar 2010) | 2 lines Fix: do not write "warning" in CMakeLists.txt (NOTICE instead). ........ --- Polyhedron/demo/Polyhedron/CMakeLists.txt | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Polyhedron/demo/Polyhedron/CMakeLists.txt b/Polyhedron/demo/Polyhedron/CMakeLists.txt index ab51ce21851..e23f5cfbceb 100644 --- a/Polyhedron/demo/Polyhedron/CMakeLists.txt +++ b/Polyhedron/demo/Polyhedron/CMakeLists.txt @@ -65,7 +65,7 @@ if(CGAL_Qt4_FOUND AND QT4_FOUND AND OPENGL_FOUND AND QGLVIEWER_FOUND) include( ${TAUCS_USE_FILE} ) add_definitions(-DCGAL_TAUCS_ENABLED) else(TAUCS_FOUND) - message(STATUS "warning: TAUCS is not found. parametrization will not be available.") + message(STATUS "NOTICE: TAUCS is not found. parametrization will not be available.") endif(TAUCS_FOUND) # Link with BLAS and LAPACK only (optional) @@ -73,7 +73,7 @@ if(CGAL_Qt4_FOUND AND QT4_FOUND AND OPENGL_FOUND AND QGLVIEWER_FOUND) include( ${LAPACK_USE_FILE} ) add_definitions(-DCGAL_LAPACK_ENABLED) else(LAPACK_FOUND) - message(STATUS "warning: LAPACK is not found. curvatures estimation will not be available.") + message(STATUS "NOTICE: LAPACK is not found. curvatures estimation will not be available.") endif(LAPACK_FOUND) qt4_wrap_ui( UI_FILES MainWindow.ui )