Salome HOME
f0ae4be7ea11c3052b8c399b5d6608628430e661
[modules/shaper.git] / CMakeCommon / FindSalomeQt5.cmake
1 # Copyright (C) 2013-2023  CEA, EDF, 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
30 SET(QT_INCLUDES)
31 SET(QT_DEFINITIONS)
32 SET(QT_LIBRARIES)
33 # Find Qt5Core to get Qt version
34 SET(Qt5_FIND_COMPONENTS QtCore)
35 SET(Qt5_OPTIONAL_COMPONENTS)
36 SALOME_FIND_PACKAGE_AND_DETECT_CONFLICTS(Qt5Core Qt5Core_INCLUDE_DIRS 1 ENVVAR QT5_ROOT_DIR)
37 IF(Qt5Core_FOUND)
38   LIST(APPEND QT_INCLUDES    ${Qt5Core_INCLUDE_DIRS})
39   LIST(APPEND QT_DEFINITIONS ${Qt5Core_DEFINITIONS})
40   LIST(APPEND QT_LIBRARIES   ${Qt5Core_LIBRARIES})
41   SET(QT_VERSION "${Qt5Core_VERSION}")
42 ENDIF()
43
44 # Add mandatory Qt 5 components below
45 SET(Qt5_FIND_COMPONENTS Gui Widgets Network Xml OpenGL PrintSupport Help Test)
46 # Add optional Qt 5 components below
47 SET(Qt5_OPTIONAL_COMPONENTS)
48
49 IF ("${QT_VERSION}" VERSION_LESS "5.6.0")
50   # QtWebKit package is used with Qt < 5.6
51   LIST(APPEND Qt5_FIND_COMPONENTS WebKit WebKitWidgets)
52 ELSE()
53   # QtWebEngine package is (optionally) used with Qt >= 5.6
54   # Anyway, not available with Python 3
55   LIST(APPEND Qt5_OPTIONAL_COMPONENTS WebEngineCore WebEngine WebEngineWidgets)
56 ENDIF()
57
58 IF(NOT WIN32)
59   ## QtX11Extras package is used on Linux only
60   LIST(APPEND Qt5_FIND_COMPONENTS X11Extras)
61 ENDIF()
62
63 FOREACH(_Qt5_COMPONENT_ ${Qt5_FIND_COMPONENTS} ${Qt5_OPTIONAL_COMPONENTS})
64   SET(_Qt5_COMPONENT Qt5${_Qt5_COMPONENT_})
65   LIST(FIND Qt5_OPTIONAL_COMPONENTS ${_Qt5_COMPONENT_} idx)
66   IF(${idx} GREATER -1)
67    SET(Salome${_Qt5_COMPONENT}_FIND_QUIETLY TRUE)
68   ENDIF()
69   FIND_PACKAGE(${_Qt5_COMPONENT})
70   LIST(APPEND QT_INCLUDES    ${${_Qt5_COMPONENT}_INCLUDE_DIRS})
71   LIST(APPEND QT_DEFINITIONS ${${_Qt5_COMPONENT}_DEFINITIONS})
72   LIST(APPEND QT_LIBRARIES   ${${_Qt5_COMPONENT}_LIBRARIES})
73 ENDFOREACH()
74
75 FIND_PACKAGE(Qt5LinguistTools)
76 GET_TARGET_PROPERTY(QT_LRELEASE_EXECUTABLE Qt5::lrelease LOCATION)
77 MARK_AS_ADVANCED(QT_LRELEASE_EXECUTABLE)
78
79 GET_FILENAME_COMPONENT(QT_BINARY_DIR ${QT_LRELEASE_EXECUTABLE} DIRECTORY)
80 MARK_AS_ADVANCED(QT_BINARY_DIR)
81
82 # This is only needed to correctly detect Qt help generator tool, to workaround an error
83 # coming from ParaView detection procedure
84 FIND_PROGRAM(QT_HELP_GENERATOR
85     qhelpgenerator
86     PATHS "${QT_BINARY_DIR}"
87     NO_DEFAULT_PATH NO_CMAKE_FIND_ROOT_PATH
88     DOC "qhelpgenerator used to compile Qt help project files")
89 MARK_AS_ADVANCED(QT_HELP_GENERATOR)
90
91 IF(Qt5Core_FOUND)
92   SALOME_ACCUMULATE_HEADERS(QT_INCLUDES)
93   SALOME_ACCUMULATE_ENVIRONMENT(PATH ${LINGUIST_PATH})
94   SALOME_ACCUMULATE_ENVIRONMENT(LD_LIBRARY_PATH ${Qt5Core_LIBRARIES})
95   GET_FILENAME_COMPONENT(Qt5_DIR ${Qt5Core_DIR} PATH)
96   FILE(TO_NATIVE_PATH "${Qt5_DIR}/Qt5" Qt5_DIR)
97   SET(SalomeQt5_COMPONENTS ${Qt5_FIND_COMPONENTS})
98   MESSAGE(STATUS "Qt version is ${QT_VERSION}")
99 ENDIF()