Salome HOME
Set the highest level of compilation warnings.
[modules/shaper.git] / CMakeCommon / FindSUIT.cmake
1 # Copyright (C) 2014-2020  CEA/DEN, EDF R&D
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
20 IF(HAVE_SALOME)
21   SET(SUIT_INCLUDE ${SALOME_GUI_INCLUDE})
22   MESSAGE(STATUS "SUIT_INCLUDE: ${SALOME_GUI_INCLUDE}")
23   SET(SUIT_LIB_DIR "${GUI_ROOT_DIR}/lib/salome")
24 ELSE(HAVE_SALOME) 
25   SET(SUIT_DIR $ENV{SUIT_DIR})
26   IF(EXISTS ${SUIT_DIR})
27
28     MESSAGE(STATUS "SUIT found at ${SUIT_DIR}")
29     IF(WIN32)
30         SET(SUIT_LIB_DIR ${SUIT_DIR}/lib)
31     ElSE()
32         SET(SUIT_LIB_DIR ${SUIT_DIR}/lib/salome)
33     ENDIF()
34
35     FIND_LIBRARY(Event Event ${SUIT_LIB_DIR})
36     FIND_LIBRARY(PyConsole PyConsole ${SUIT_LIB_DIR})
37     FIND_LIBRARY(PyInterp PyInterp ${SUIT_LIB_DIR})
38     FIND_LIBRARY(qtx qtx ${SUIT_LIB_DIR})
39     FIND_LIBRARY(suit suit ${SUIT_LIB_DIR})
40     FIND_LIBRARY(ViewerData ViewerData ${SUIT_LIB_DIR})
41
42     IF(WIN32)
43         SET(SUIT_INCLUDE ${SUIT_DIR}/include)
44     ElSE()
45         SET(SUIT_INCLUDE ${SUIT_DIR}/include/salome)
46     ENDIF()
47   ENDIF(EXISTS ${SUIT_DIR})
48 ENDIF(HAVE_SALOME)