Salome HOME
fixed a typo
[modules/shaper.git] / CMakeCommon / FindSUIT.cmake
1 # Copyright (C) 2014-2023  CEA, EDF
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 "${GUI_ROOT_DIR}/include/salome")
22   SET(SUIT_LIB_DIR "${GUI_ROOT_DIR}/lib/salome")
23 ELSE(HAVE_SALOME) 
24   SET(SUIT_DIR $ENV{SUIT_DIR})
25   IF(EXISTS ${SUIT_DIR})
26     MESSAGE(STATUS "SUIT found at ${SUIT_DIR}")
27     IF(WIN32)
28         SET(SUIT_LIB_DIR ${SUIT_DIR}/lib)
29     ElSE()
30         SET(SUIT_LIB_DIR ${SUIT_DIR}/lib/salome)
31     ENDIF()
32
33     FIND_LIBRARY(Event Event ${SUIT_LIB_DIR})
34     FIND_LIBRARY(PyConsole PyConsole ${SUIT_LIB_DIR})
35     FIND_LIBRARY(PyInterp PyInterp ${SUIT_LIB_DIR})
36     FIND_LIBRARY(qtx qtx ${SUIT_LIB_DIR})
37     FIND_LIBRARY(suit suit ${SUIT_LIB_DIR})
38     FIND_LIBRARY(ViewerData ViewerData ${SUIT_LIB_DIR})
39
40     IF(WIN32)
41         SET(SUIT_INCLUDE ${SUIT_DIR}/include)
42     ElSE()
43         SET(SUIT_INCLUDE ${SUIT_DIR}/include/salome)
44     ENDIF()
45   ENDIF(EXISTS ${SUIT_DIR})
46 ENDIF(HAVE_SALOME)
47
48 FILE(TO_CMAKE_PATH ${SUIT_LIB_DIR} SUIT_LIB_DIR)
49 FILE(TO_CMAKE_PATH ${SUIT_INCLUDE} SUIT_INCLUDE)
50 MESSAGE(STATUS "SUIT includes: ${SUIT_INCLUDE}")
51 MESSAGE(STATUS "SUIT libraries: ${SUIT_LIB_DIR}")