2016-10-30 18:24:19 +01:00
# Distributed under the OSI-approved BSD 3-Clause License. See accompanying
# file Copyright.txt or https://cmake.org/licensing for details.
2014-08-03 19:52:23 +02:00
#.rst:
# FindQt
# ------
#
# Searches for all installed versions of Qt.
#
2008-10-12 18:41:06 +02:00
# This should only be used if your project can work with multiple
2014-08-03 19:52:23 +02:00
# versions of Qt. If not, you should just directly use FindQt4 or
# FindQt3. If multiple versions of Qt are found on the machine, then
# The user must set the option DESIRED_QT_VERSION to the version they
# want to use. If only one version of qt is found on the machine, then
# the DESIRED_QT_VERSION is set to that version and the matching FindQt3
# or FindQt4 module is included. Once the user sets DESIRED_QT_VERSION,
# then the FindQt3 or FindQt4 module is included.
#
2015-04-27 22:25:09 +02:00
# This module can only detect and switch between Qt versions 3 and 4. It
# cannot handle Qt5 or any later versions.
#
2014-08-03 19:52:23 +02:00
# ::
#
# QT_REQUIRED if this is set to TRUE then if CMake can
# not find Qt4 or Qt3 an error is raised
# and a message is sent to the user.
#
#
#
# ::
#
# DESIRED_QT_VERSION OPTION is created
# QT4_INSTALLED is set to TRUE if qt4 is found.
# QT3_INSTALLED is set to TRUE if qt3 is found.
2008-10-12 18:41:06 +02:00
# look for signs of qt3 installations
2013-03-16 19:13:01 +02:00
file ( GLOB GLOB_TEMP_VAR /usr/lib*/qt-3*/bin/qmake /usr/lib*/qt3*/bin/qmake )
if ( GLOB_TEMP_VAR )
set ( QT3_INSTALLED TRUE )
endif ( )
set ( GLOB_TEMP_VAR )
file ( GLOB GLOB_TEMP_VAR /usr/local/qt-x11-commercial-3*/bin/qmake )
if ( GLOB_TEMP_VAR )
set ( QT3_INSTALLED TRUE )
endif ( )
set ( GLOB_TEMP_VAR )
file ( GLOB GLOB_TEMP_VAR /usr/local/lib/qt3/bin/qmake )
if ( GLOB_TEMP_VAR )
set ( QT3_INSTALLED TRUE )
endif ( )
set ( GLOB_TEMP_VAR )
2008-10-12 18:41:06 +02:00
# look for qt4 installations
2013-03-16 19:13:01 +02:00
file ( GLOB GLOB_TEMP_VAR /usr/local/qt-x11-commercial-4*/bin/qmake )
if ( GLOB_TEMP_VAR )
set ( QT4_INSTALLED TRUE )
endif ( )
set ( GLOB_TEMP_VAR )
file ( GLOB GLOB_TEMP_VAR /usr/local/Trolltech/Qt-4*/bin/qmake )
if ( GLOB_TEMP_VAR )
set ( QT4_INSTALLED TRUE )
endif ( )
set ( GLOB_TEMP_VAR )
file ( GLOB GLOB_TEMP_VAR /usr/local/lib/qt4/bin/qmake )
if ( GLOB_TEMP_VAR )
set ( QT4_INSTALLED TRUE )
endif ( )
set ( GLOB_TEMP_VAR )
if ( Qt_FIND_VERSION )
2015-04-27 22:25:09 +02:00
if ( Qt_FIND_VERSION MATCHES "^([34])(\\.[0-9]+.*)?$" )
set ( DESIRED_QT_VERSION ${ CMAKE_MATCH_1 } )
else ( )
message ( FATAL_ERROR "FindQt was called with invalid version '${Qt_FIND_VERSION}'. Only Qt major versions 3 or 4 are supported. If you do not need to support both Qt3 and Qt4 in your source consider calling find_package(Qt3) or find_package(Qt4) instead of find_package(Qt) instead." )
endif ( )
2013-03-16 19:13:01 +02:00
endif ( )
2008-10-12 18:41:06 +02:00
# now find qmake
2013-03-16 19:13:01 +02:00
find_program ( QT_QMAKE_EXECUTABLE_FINDQT NAMES qmake PATHS "${QT_SEARCH_PATH}/bin" "$ENV{QTDIR}/bin" )
if ( QT_QMAKE_EXECUTABLE_FINDQT )
exec_program ( ${ QT_QMAKE_EXECUTABLE_FINDQT } ARGS "-query QT_VERSION"
2008-10-12 18:41:06 +02:00
O U T P U T _ V A R I A B L E Q T V E R S I O N )
2015-04-27 22:25:09 +02:00
if ( QTVERSION MATCHES "4" )
2013-03-16 19:13:01 +02:00
set ( QT_QMAKE_EXECUTABLE ${ QT_QMAKE_EXECUTABLE_FINDQT } CACHE PATH "Qt4 qmake program." )
set ( QT4_INSTALLED TRUE )
endif ( )
if ( QTVERSION MATCHES "Unknown" )
set ( QT3_INSTALLED TRUE )
endif ( )
endif ( )
if ( QT_QMAKE_EXECUTABLE_FINDQT )
exec_program ( ${ QT_QMAKE_EXECUTABLE_FINDQT }
A R G S " - q u e r y Q T _ I N S T A L L _ H E A D E R S "
2008-10-12 18:41:06 +02:00
O U T P U T _ V A R I A B L E q t _ h e a d e r s )
2013-03-16 19:13:01 +02:00
endif ( )
2008-10-12 18:41:06 +02:00
2013-03-16 19:13:01 +02:00
find_file ( QT4_QGLOBAL_H_FILE qglobal.h
2008-10-12 18:41:06 +02:00
" $ { Q T _ S E A R C H _ P A T H } / Q t / i n c l u d e "
" [ H K E Y _ C U R R E N T _ U S E R \ \ S o f t w a r e \ \ T r o l l t e c h \ \ Q t 3 V e r s i o n s \ \ 4 . 0 . 0 ; I n s t a l l D i r ] / i n c l u d e / Q t "
" [ H K E Y _ C U R R E N T _ U S E R \ \ S o f t w a r e \ \ T r o l l t e c h \ \ V e r s i o n s \ \ 4 . 0 . 0 ; I n s t a l l D i r ] / i n c l u d e / Q t "
$ { q t _ h e a d e r s } / Q t
$ E N V { Q T D I R } / i n c l u d e / Q t
/ u s r / l i b / q t / i n c l u d e / Q t
/ u s r / s h a r e / q t 4 / i n c l u d e / Q t
2013-03-16 19:13:01 +02:00
/ u s r / l o c a l / i n c l u d e / X 1 1 / q t 4 / Q t
2018-04-23 21:13:27 +02:00
C : / P r o g r a ~ 1 / q t / i n c l u d e / Q t
P A T H _ S U F F I X E S q t / i n c l u d e / Q t i n c l u d e / Q t )
2008-10-12 18:41:06 +02:00
2013-03-16 19:13:01 +02:00
if ( QT4_QGLOBAL_H_FILE )
set ( QT4_INSTALLED TRUE )
endif ( )
2008-10-12 18:41:06 +02:00
2013-03-16 19:13:01 +02:00
find_file ( QT3_QGLOBAL_H_FILE qglobal.h
" $ { Q T _ S E A R C H _ P A T H } / Q t / i n c l u d e "
2008-10-12 18:41:06 +02:00
" [ H K E Y _ C U R R E N T _ U S E R \ \ S o f t w a r e \ \ T r o l l t e c h \ \ Q t 3 V e r s i o n s \ \ 3 . 2 . 1 ; I n s t a l l D i r ] / i n c l u d e / Q t "
" [ H K E Y _ C U R R E N T _ U S E R \ \ S o f t w a r e \ \ T r o l l t e c h \ \ Q t 3 V e r s i o n s \ \ 3 . 2 . 0 ; I n s t a l l D i r ] / i n c l u d e / Q t "
" [ H K E Y _ C U R R E N T _ U S E R \ \ S o f t w a r e \ \ T r o l l t e c h \ \ Q t 3 V e r s i o n s \ \ 3 . 1 . 0 ; I n s t a l l D i r ] / i n c l u d e / Q t "
C : / Q t / 3 . 3 . 3 E d u c a t i o n a l / i n c l u d e
$ E N V { Q T D I R } / i n c l u d e
/ u s r / i n c l u d e / q t 3 / Q t
/ u s r / s h a r e / q t 3 / i n c l u d e
2013-03-16 19:13:01 +02:00
/ u s r / l o c a l / i n c l u d e / X 1 1 / q t 3
2008-10-12 18:41:06 +02:00
C : / P r o g r a ~ 1 / q t / i n c l u d e
2018-04-23 21:13:27 +02:00
P A T H _ S U F F I X E S q t / i n c l u d e i n c l u d e / q t 3 )
2008-10-12 18:41:06 +02:00
2013-03-16 19:13:01 +02:00
if ( QT3_QGLOBAL_H_FILE )
set ( QT3_INSTALLED TRUE )
endif ( )
2008-10-12 18:41:06 +02:00
2013-03-16 19:13:01 +02:00
if ( QT3_INSTALLED AND QT4_INSTALLED AND NOT DESIRED_QT_VERSION )
2008-10-12 18:41:06 +02:00
# force user to pick if we have both
2013-03-16 19:13:01 +02:00
set ( DESIRED_QT_VERSION 0 CACHE STRING "Pick a version of Qt to use: 3 or 4" )
else ( )
2008-10-12 18:41:06 +02:00
# if only one found then pick that one
2013-03-16 19:13:01 +02:00
if ( QT3_INSTALLED AND NOT DESIRED_QT_VERSION EQUAL 4 )
set ( DESIRED_QT_VERSION 3 CACHE STRING "Pick a version of Qt to use: 3 or 4" )
endif ( )
if ( QT4_INSTALLED AND NOT DESIRED_QT_VERSION EQUAL 3 )
set ( DESIRED_QT_VERSION 4 CACHE STRING "Pick a version of Qt to use: 3 or 4" )
endif ( )
endif ( )
2015-04-27 22:25:09 +02:00
if ( DESIRED_QT_VERSION EQUAL 3 )
2013-03-16 19:13:01 +02:00
set ( Qt3_FIND_REQUIRED ${ Qt_FIND_REQUIRED } )
set ( Qt3_FIND_QUIETLY ${ Qt_FIND_QUIETLY } )
include ( ${ CMAKE_CURRENT_LIST_DIR } /FindQt3.cmake )
endif ( )
2015-04-27 22:25:09 +02:00
if ( DESIRED_QT_VERSION EQUAL 4 )
2013-03-16 19:13:01 +02:00
set ( Qt4_FIND_REQUIRED ${ Qt_FIND_REQUIRED } )
set ( Qt4_FIND_QUIETLY ${ Qt_FIND_QUIETLY } )
include ( ${ CMAKE_CURRENT_LIST_DIR } /FindQt4.cmake )
endif ( )
if ( NOT QT3_INSTALLED AND NOT QT4_INSTALLED )
if ( QT_REQUIRED )
message ( SEND_ERROR "CMake was unable to find any Qt versions, put qmake in your path, or set QT_QMAKE_EXECUTABLE." )
endif ( )
else ( )
if ( NOT QT_FOUND AND NOT DESIRED_QT_VERSION )
if ( QT_REQUIRED )
message ( SEND_ERROR "Multiple versions of Qt found please set DESIRED_QT_VERSION" )
else ( )
message ( "Multiple versions of Qt found please set DESIRED_QT_VERSION" )
endif ( )
endif ( )
if ( NOT QT_FOUND AND DESIRED_QT_VERSION )
if ( QT_REQUIRED )
2015-04-27 22:25:09 +02:00
message ( FATAL_ERROR "CMake was unable to find Qt version: ${DESIRED_QT_VERSION}. Set advanced values QT_QMAKE_EXECUTABLE and QT${DESIRED_QT_VERSION}_QGLOBAL_H_FILE, if those are set then QT_QT_LIBRARY or QT_LIBRARY_DIR." )
2013-03-16 19:13:01 +02:00
else ( )
2015-04-27 22:25:09 +02:00
message ( "CMake was unable to find desired Qt version: ${DESIRED_QT_VERSION}. Set advanced values QT_QMAKE_EXECUTABLE and QT${DESIRED_QT_VERSION}_QGLOBAL_H_FILE." )
2013-03-16 19:13:01 +02:00
endif ( )
endif ( )
endif ( )
mark_as_advanced ( QT3_QGLOBAL_H_FILE QT4_QGLOBAL_H_FILE QT_QMAKE_EXECUTABLE_FINDQT )