Salome HOME
Debug of CMake build procedure
[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 # FULL_GUI is a macro useful for determining whether a GUI module 
46 # builded in full mode 
47 #----------------------------------------------------------------------------
48 #########################################################################
49 # FULL_GUI()
50
51 # USAGE: FULL_GUI(with_corba)
52 #
53 # ARGUMENTS:
54 #   with_corba [input] TRUE or FALSE - use CORBA for building module or no.
55 #
56 MACRO(FULL_GUI with_corba)
57   SET(_options)
58   IF(${with_corba} AND ${SALOME_GUI_LIGHT_ONLY})
59     SET(_corba_message "We absolutely need a Salome GUI module with CORBA.\nPlease set option SALOME_LIGHT_ONLY to OFF when building GUI module.")
60   ENDIF() 
61   
62   LIST(APPEND _options SALOME_USE_OCCVIEWER SALOME_USE_GLVIEWER SALOME_USE_VTKVIEWER
63               SALOME_USE_PLOT2DVIEWER SALOME_USE_GRAPHICSVIEW SALOME_USE_QXGRAPHVIEWER
64               SALOME_USE_SALOMEOBJECT SALOME_USE_PYCONSOLE)
65               
66   SET(_message) 
67   FOREACH(_option ${_options}) 
68     IF(NOT ${_option})
69       LIST(APPEND _message ${_option})
70     ENDIF()
71   ENDFOREACH()
72   IF(_message)
73     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")
74     IF(_corba_message)
75       MESSAGE(FATAL_ERROR "${_corba_message}\n${_message}")
76     ELSE()
77       MESSAGE(FATAL_ERROR "${_message}")
78     ENDIF()
79   ELSEIF(_corba_message)
80     MESSAGE(FATAL_ERROR "${_corba_message}") 
81   ENDIF() 
82   
83 ENDMACRO(FULL_GUI)