Salome HOME
Removed unnecessary headers in install tree
[tools/libbatch.git] / CMakeModules / Summary.cmake
1 #  Copyright (C) 2007-2010  CEA/DEN, EDF R&D, OPEN CASCADE
2 #
3 #  Copyright (C) 2003-2007  OPEN CASCADE, EADS/CCR, LIP6, CEA/DEN,
4 #  CEDRAT, EDF R&D, LEG, PRINCIPIA R&D, BUREAU VERITAS
5 #
6 #  This library is free software; you can redistribute it and/or
7 #  modify it under the terms of the GNU Lesser General Public
8 #  License as published by the Free Software Foundation; either
9 #  version 2.1 of the License.
10 #
11 #  This library is distributed in the hope that it will be useful,
12 #  but WITHOUT ANY WARRANTY; without even the implied warranty of
13 #  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
14 #  Lesser General Public License for more details.
15 #
16 #  You should have received a copy of the GNU Lesser General Public
17 #  License along with this library; if not, write to the Free Software
18 #  Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307 USA
19 #
20 #  See http://www.salome-platform.org/ or email : webmaster.salome@opencascade.com
21 #
22
23 MESSAGE(STATUS "")
24 MESSAGE(STATUS "**************** Summary ****************")
25 MESSAGE(STATUS "")
26 IF (BUILD_LSF_INTERFACE)
27     IF (LSF_FOUND)
28         MESSAGE(STATUS "LSF ................................. Yes")
29     ELSE (LSF_FOUND)
30         MESSAGE(STATUS "LSF ........................... Not found")
31     ENDIF (LSF_FOUND)
32 ELSE (BUILD_LSF_INTERFACE)
33         MESSAGE(STATUS "LSF ....................... Not requested")
34 ENDIF (BUILD_LSF_INTERFACE)
35
36 IF (BUILD_PBS_INTERFACE)
37     IF (PBS_FOUND)
38         MESSAGE(STATUS "PBS ................................. Yes")
39     ELSE (PBS_FOUND)
40         MESSAGE(STATUS "PBS ........................... Not found")
41     ENDIF (PBS_FOUND)
42 ELSE (BUILD_PBS_INTERFACE)
43         MESSAGE(STATUS "PBS ....................... Not requested")
44 ENDIF (BUILD_PBS_INTERFACE)
45
46 IF (BUILD_LOCAL_SUBMISSION)
47         MESSAGE(STATUS "Local submission .................... Yes")
48 ELSE (BUILD_LOCAL_SUBMISSION)
49         MESSAGE(STATUS "Local submission .......... Not requested")
50 ENDIF (BUILD_LOCAL_SUBMISSION)
51
52 IF (BUILD_PYTHON_WRAPPING)
53     IF (Python_FOUND AND SWIG_FOUND)
54         MESSAGE(STATUS "Python wrapping ..................... Yes")
55     ELSE (Python_FOUND AND SWIG_FOUND)
56         MESSAGE(STATUS "Python wrapping ............... Not found")
57     ENDIF (Python_FOUND AND SWIG_FOUND)
58 ELSE (BUILD_PYTHON_WRAPPING)
59         MESSAGE(STATUS "Python wrapping ........... Not requested")
60 ENDIF (BUILD_PYTHON_WRAPPING)
61
62 IF (Makeinfo_FOUND)
63     MESSAGE(STATUS "Makeinfo ............................ Yes")
64 ELSE (Makeinfo_FOUND)
65     MESSAGE(STATUS "Makeinfo ...................... Not found")
66 ENDIF (Makeinfo_FOUND)
67
68 MESSAGE(STATUS "")
69 MESSAGE(STATUS "************** End Summary **************")
70 MESSAGE(STATUS "")