Salome HOME
09182edfda8e52181936d410883b242a79aaeba9
[modules/gui.git] / adm_local / cmake_files / deprecated / FindQWT.cmake
1 # Copyright (C) 2007-2016  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
20 FILE(TO_CMAKE_PATH "$ENV{QWTHOME}" QWTHOME)
21 IF(NOT QWTHOME)
22   SET(QWTHOME /usr)
23 ENDIF(NOT QWTHOME)
24
25 FIND_PATH(QWT_INCLUDE_DIR qwt_plot.h PATHS ${QWTHOME}/include ${QWTHOME}/include/qwt)
26 SET(QWT_INCLUDES -I${QWT_INCLUDE_DIR}) # to remove
27 SET(QWT_INCLUDE_DIRS ${QWT_INCLUDE_DIR})
28 IF(WINDOWS)
29 SET(QWT_INCLUDES ${QWT_INCLUDES} -DQWT_DLL) # to remove
30 SET(QWT_DEFINITIONS "-DQWT_DLL")
31 ENDIF(WINDOWS)
32
33 IF(WINDOWS)
34 IF(CMAKE_BUILD_TYPE STREQUAL Debug)
35 FIND_LIBRARY(QWT_LIBS qwtd5 ${QWTHOME}/lib)
36 ELSE(CMAKE_BUILD_TYPE STREQUAL Debug)
37 FIND_LIBRARY(QWT_LIBS qwt5 ${QWTHOME}/lib)
38 ENDIF(CMAKE_BUILD_TYPE STREQUAL Debug)
39 ELSE(WINDOWS)
40 FIND_LIBRARY(QWT_LIBS qwt HINTS ${QWTHOME} PATH_SUFFIXES lib lib64)
41 ENDIF(WINDOWS)