Salome HOME
Allow Qt5 package to be detected in CONFIG mode (for usage in config files)
[modules/gui.git] / adm_local / cmake_files / FindSalomeQt5.cmake
1 # Copyright (C) 2013-2015  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 # Qt5 detection for Salome
23 #
24 #  !! Please read the generic detection procedure in SalomeMacros.cmake !!
25 #
26
27 # Qt5_FIND_COMPONENTS variable is set here to prevent ParaView to reset list of Qt5 modules,
28 # just to avoid extra dependencies
29 SET(Qt5_FIND_COMPONENTS Core Gui Widgets Network Xml OpenGL PrintSupport WebKit WebKitWidgets Help Test Sql Sensors Positioning Quick Qml Multimedia MultimediaWidgets WebChannel UiTools)
30
31 IF(NOT WIN32)
32   LIST(APPEND Qt5_FIND_COMPONENTS X11Extras)
33 ENDIF()
34
35 SET(QT_INCLUDES)
36 SET(QT_DEFINITIONS)
37 SET(QT_LIBRARIES)
38
39 FOREACH(_Qt5_COMPONENT ${Qt5_FIND_COMPONENTS})
40   SET(_Qt5_COMPONENT Qt5${_Qt5_COMPONENT})
41   SALOME_FIND_PACKAGE_AND_DETECT_CONFLICTS(${_Qt5_COMPONENT} ${_Qt5_COMPONENT}_INCLUDE_DIRS 1 ENVVAR QT5_ROOT_DIR)
42   LIST(APPEND QT_INCLUDES    ${${_Qt5_COMPONENT}_INCLUDE_DIRS})
43   LIST(APPEND QT_DEFINITIONS ${${_Qt5_COMPONENT}_DEFINITIONS})
44   LIST(APPEND QT_LIBRARIES   ${${_Qt5_COMPONENT}_LIBRARIES})
45 ENDFOREACH()
46
47 FIND_PACKAGE(Qt5LinguistTools)
48 GET_TARGET_PROPERTY(QT_LRELEASE_EXECUTABLE ${Qt5_LRELEASE_EXECUTABLE} LOCATION)
49 MARK_AS_ADVANCED(QT_LRELEASE_EXECUTABLE)
50
51 GET_FILENAME_COMPONENT(QT_BINARY_DIR ${QT_LRELEASE_EXECUTABLE} DIRECTORY)
52 MARK_AS_ADVANCED(QT_BINARY_DIR)
53
54 # This is only needed to correctly detect Qt help generator tool, to workaround an error 
55 # coming from ParaView detection procedure
56 FIND_PROGRAM(QT_HELP_GENERATOR
57     qhelpgenerator
58     PATHS "${QT_BINARY_DIR}"
59     NO_DEFAULT_PATH NO_CMAKE_FIND_ROOT_PATH
60     DOC "qhelpgenerator used to compile Qt help project files")
61 MARK_AS_ADVANCED(QT_HELP_GENERATOR)
62
63 IF(Qt5Core_FOUND) 
64   SALOME_ACCUMULATE_HEADERS(QT_INCLUDES)
65   SALOME_ACCUMULATE_ENVIRONMENT(PATH ${LINGUIST_PATH})
66   SALOME_ACCUMULATE_ENVIRONMENT(LD_LIBRARY_PATH ${Qt5Core_LIBRARIES})
67   SET(QT_VERSION "${Qt5Core_VERSION}")
68   SET(Qt5_DIR ${Qt5Core_DIR})
69   SET(SalomeQt5_COMPONENTS ${Qt5_FIND_COMPONENTS})
70   MESSAGE(STATUS "Qt version is ${QT_VERSION}")
71 ENDIF()