Salome HOME
Merge branch 'asl/hydro_porting_741'
[modules/gui.git] / adm_local / cmake_files / FindSalomeGUI.cmake
1 # Copyright (C) 2007-2014  CEA/DEN, EDF R&D, OPEN CASCADE
2 #
3 # This library is free software; you can redistribute it and/or
4 # modify it under the terms of the GNU Lesser General Public
5 # License as published by the Free Software Foundation; either
6 # version 2.1 of the License, or (at your option) any later version.
7 #
8 # This library is distributed in the hope that it will be useful,
9 # but WITHOUT ANY WARRANTY; without even the implied warranty of
10 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
11 # Lesser General Public License for more details.
12 #
13 # You should have received a copy of the GNU Lesser General Public
14 # License along with this library; if not, write to the Free Software
15 # Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307 USA
16 #
17 # See http://www.salome-platform.org/ or email : webmaster.salome@opencascade.com
18 #
19 # Author: Adrien Bruneton
20 #
21
22 # GUI detection for Salome - this is typically called by dependent modules
23 # (PARAVIS, etc ...)
24 #
25 # The detection is simpler than for other prerequisites.
26 # See explanation in FindSalomeKERNEL.cmake.
27 #
28
29 IF(NOT SalomeGUI_FIND_QUIETLY)
30   MESSAGE(STATUS "Looking for Salome GUI ...")
31 ENDIF()
32
33 SET(CMAKE_PREFIX_PATH "${GUI_ROOT_DIR}")
34 SALOME_FIND_PACKAGE(SalomeGUI SalomeGUI CONFIG)
35
36 IF(NOT SalomeGUI_FIND_QUIETLY)
37   MESSAGE(STATUS "Found Salome GUI: ${GUI_ROOT_DIR}")
38 ENDIF()
39
40 FOREACH(_res ${SalomeGUI_EXTRA_ENV})
41   SALOME_ACCUMULATE_ENVIRONMENT(${_res} "${SalomeGUI_EXTRA_ENV_${_res}}")
42 ENDFOREACH()
43
44 #----------------------------------------------------------------------------
45 # SALOME_GUI_WITH_CORBA is a macro useful for determining whether a SALOME GUI module 
46 # is built in not light mode (with CORBA)
47 #----------------------------------------------------------------------------
48 MACRO(SALOME_GUI_WITH_CORBA)
49   IF(SALOME_GUI_LIGHT_ONLY)
50     MESSAGE(FATAL_ERROR "\nWe absolutely need a Salome GUI module with CORBA.\nPlease set option SALOME_LIGHT_ONLY to OFF when building GUI module.")
51   ENDIF()
52 ENDMACRO(SALOME_GUI_WITH_CORBA)
53
54 #----------------------------------------------------------------------------
55 # FULL_GUI is a macro useful for determining whether a GUI module
56 # builded in full mode
57 #----------------------------------------------------------------------------
58 MACRO(FULL_GUI)
59   SET(_options)
60   LIST(APPEND _options SALOME_USE_OCCVIEWER SALOME_USE_GLVIEWER SALOME_USE_VTKVIEWER
61               SALOME_USE_PLOT2DVIEWER SALOME_USE_GRAPHICSVIEW SALOME_USE_QXGRAPHVIEWER
62               SALOME_USE_SALOMEOBJECT SALOME_USE_PYCONSOLE)
63   SALOME_GUI_MODE(${_options})
64 ENDMACRO(FULL_GUI)
65
66 #----------------------------------------------------------------------------
67 # SALOME_GUI_MODE is a macro useful for determining whether a GUI module
68 # builded in particular mode 
69 #----------------------------------------------------------------------------
70 #########################################################################
71 # FULL_GUI()
72
73 # USAGE: FULL_GUI(_options)
74 #
75 # ARGUMENTS:
76 #   _options [input] List - The list of CMake options given to SALOME GUI
77 #
78 MACRO(SALOME_GUI_MODE _options)
79   MESSAGE(STATUS "Checking status of GUI options ${_options}")
80   SET(_message) 
81   FOREACH(_option ${_options})
82     IF(NOT ${_option})
83       LIST(APPEND _message ${_option})
84     ENDIF()
85   ENDFOREACH()
86   IF(_message)
87     SET(_message "We absolutely need a Salome GUI module in full mode.\nThe following options should be set to ON when building GUI module:\n${_message}\n")
88     IF(_corba_message)
89       MESSAGE(FATAL_ERROR "${_corba_message}\n${_message}")
90     ELSE()
91       MESSAGE(FATAL_ERROR "${_message}")
92     ENDIF()
93   ELSEIF(_corba_message)
94     MESSAGE(FATAL_ERROR "${_corba_message}") 
95   ENDIF() 
96 ENDMACRO(SALOME_GUI_MODE)