Salome HOME
Initial import: adding files
[tools/libbatch.git] / CMakeModules / Summary.cmake
1 #  Copyright (C) 2007-2008  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("")
24 MESSAGE("**************** Summary ****************")
25 MESSAGE("")
26 IF (BUILD_LSF_INTERFACE)
27     IF (LSF_FOUND)
28         MESSAGE("LSF ................................. Yes")
29     ELSE (LSF_FOUND)
30         MESSAGE("LSF ........................... Not found")
31     ENDIF (LSF_FOUND)
32 ELSE (BUILD_LSF_INTERFACE)
33         MESSAGE("LSF ....................... Not requested")
34 ENDIF (BUILD_LSF_INTERFACE)
35
36 IF (BUILD_PBS_INTERFACE)
37     IF (PBS_FOUND)
38         MESSAGE("PBS ................................. Yes")
39     ELSE (PBS_FOUND)
40         MESSAGE("PBS ........................... Not found")
41     ENDIF (PBS_FOUND)
42 ELSE (BUILD_PBS_INTERFACE)
43         MESSAGE("PBS ....................... Not requested")
44 ENDIF (BUILD_PBS_INTERFACE)
45
46 IF (BUILD_LOCAL_SUBMISSION)
47         MESSAGE("Local submission .................... Yes")
48 ELSE (BUILD_LOCAL_SUBMISSION)
49         MESSAGE("Local submission .......... Not requested")
50 ENDIF (BUILD_LOCAL_SUBMISSION)
51
52 IF (BUILD_PYTHON_WRAPPING)
53     IF (PYTHON_INCLUDE_PATH AND PYTHON_LIBRARIES AND SWIG_FOUND)
54         MESSAGE("Python wrapping ..................... Yes")
55     ELSE (PYTHON_INCLUDE_PATH AND PYTHON_LIBRARIES AND SWIG_FOUND)
56         MESSAGE("Python wrapping ............... Not found")
57     ENDIF (PYTHON_INCLUDE_PATH AND PYTHON_LIBRARIES AND SWIG_FOUND)
58 ELSE (BUILD_PYTHON_WRAPPING)
59         MESSAGE("Python wrapping ........... Not requested")
60 ENDIF (BUILD_PYTHON_WRAPPING)
61
62 IF (Makeinfo_FOUND)
63     MESSAGE("Makeinfo ............................ Yes")
64 ELSE (Makeinfo_FOUND)
65     MESSAGE("Makeinfo ...................... Not found")
66 ENDIF (Makeinfo_FOUND)
67
68 MESSAGE("")
69 MESSAGE("************** End Summary **************")
70 MESSAGE("")