2005-12-14 21:51:08 +03:00
# - Find QT 4
# This module can be used to find Qt4.
2006-04-27 23:07:23 +04:00
# The most important issue is that the Qt4 qmake is available via the system path.
# This qmake is then used to detect basically everything else.
2008-03-19 01:37:28 +03:00
# This module defines a number of key variables and macros.
2009-02-20 00:04:57 +03:00
# The variable QT_USE_FILE is set which is the path to a CMake file that can be included
# to compile Qt 4 applications and libraries. It sets up the compilation
# environment for include directories, preprocessor defines and populates a
# QT_LIBRARIES variable.
#
# Typical usage could be something like:
2011-01-15 07:26:19 +03:00
# find_package(Qt4 4.4.3 REQUIRED QtCore QtGui QtXml)
2009-02-20 00:04:57 +03:00
# include(${QT_USE_FILE})
# add_executable(myexe main.cpp)
# target_link_libraries(myexe ${QT_LIBRARIES})
#
2009-10-02 00:48:19 +04:00
# The minimum required version can be specified using the standard find_package()-syntax
# (see example above).
# For compatibility with older versions of FindQt4.cmake it is also possible to
# set the variable QT_MIN_VERSION to the minimum required version of Qt4 before the
# find_package(Qt4) command.
# If both are used, the version used in the find_package() command overrides the
# one from QT_MIN_VERSION.
#
2009-02-20 00:04:57 +03:00
# When using the components argument, QT_USE_QT* variables are automatically set
# for the QT_USE_FILE to pick up. If one wishes to manually set them, the
# available ones to set include:
2005-12-14 21:51:08 +03:00
# QT_DONT_USE_QTCORE
# QT_DONT_USE_QTGUI
# QT_USE_QT3SUPPORT
# QT_USE_QTASSISTANT
2009-02-06 07:01:38 +03:00
# QT_USE_QAXCONTAINER
# QT_USE_QAXSERVER
2005-12-14 21:51:08 +03:00
# QT_USE_QTDESIGNER
# QT_USE_QTMOTIF
2006-04-27 23:07:23 +04:00
# QT_USE_QTMAIN
2009-12-20 17:06:42 +03:00
# QT_USE_QTMULTIMEDIA
2005-12-14 21:51:08 +03:00
# QT_USE_QTNETWORK
# QT_USE_QTNSPLUGIN
# QT_USE_QTOPENGL
# QT_USE_QTSQL
# QT_USE_QTXML
2006-09-06 16:31:50 +04:00
# QT_USE_QTSVG
# QT_USE_QTTEST
# QT_USE_QTUITOOLS
2007-01-05 00:50:18 +03:00
# QT_USE_QTDBUS
2007-08-22 00:50:49 +04:00
# QT_USE_QTSCRIPT
2008-03-13 22:29:28 +03:00
# QT_USE_QTASSISTANTCLIENT
# QT_USE_QTHELP
# QT_USE_QTWEBKIT
# QT_USE_QTXMLPATTERNS
2008-03-14 02:12:46 +03:00
# QT_USE_PHONON
2009-05-06 17:44:36 +04:00
# QT_USE_QTSCRIPTTOOLS
2010-02-18 03:12:18 +03:00
# QT_USE_QTDECLARATIVE
2006-04-27 23:07:23 +04:00
#
2010-01-19 00:23:21 +03:00
# QT_USE_IMPORTED_TARGETS
# If this variable is set to TRUE, FindQt4.cmake will create imported
# library targets for the various Qt libraries and set the
# library variables like QT_QTCORE_LIBRARY to point at these imported
# targets instead of the library file on disk. This provides much better
# handling of the release and debug versions of the Qt libraries and is
# also always backwards compatible, except for the case that dependencies
# of libraries are exported, these will then also list the names of the
# imported targets as dependency and not the file location on disk. This
# is much more flexible, but requires that FindQt4.cmake is executed before
# such an exported dependency file is processed.
#
2008-03-19 01:37:28 +03:00
# There are also some files that need processing by some Qt tools such as moc
# and uic. Listed below are macros that may be used to process those files.
2006-05-20 00:57:49 +04:00
#
2007-12-15 00:56:25 +03:00
# macro QT4_WRAP_CPP(outfiles inputfile ... OPTIONS ...)
2007-12-18 21:05:43 +03:00
# create moc code from a list of files containing Qt class with
2008-08-27 00:04:36 +04:00
# the Q_OBJECT declaration. Per-direcotry preprocessor definitions
# are also added. Options may be given to moc, such as those found
# when executing "moc -help".
2007-12-18 21:05:43 +03:00
#
2007-12-15 00:56:25 +03:00
# macro QT4_WRAP_UI(outfiles inputfile ... OPTIONS ...)
2007-12-18 21:05:43 +03:00
# create code from a list of Qt designer ui files.
# Options may be given to uic, such as those found
# when executing "uic -help"
#
2007-12-15 00:56:25 +03:00
# macro QT4_ADD_RESOURCES(outfiles inputfile ... OPTIONS ...)
2007-12-18 21:05:43 +03:00
# create code from a list of Qt resource files.
# Options may be given to rcc, such as those found
# when executing "rcc -help"
#
2006-04-27 23:07:23 +04:00
# macro QT4_GENERATE_MOC(inputfile outputfile )
2008-04-02 01:59:21 +04:00
# creates a rule to run moc on infile and create outfile.
# Use this if for some reason QT4_WRAP_CPP() isn't appropriate, e.g.
# because you need a custom filename for the moc file or something similar.
#
# macro QT4_AUTOMOC(sourcefile1 sourcefile2 ... )
# This macro is still experimental.
# It can be used to have moc automatically handled.
# So if you have the files foo.h and foo.cpp, and in foo.h a
# a class uses the Q_OBJECT macro, moc has to run on it. If you don't
# want to use QT4_WRAP_CPP() (which is reliable and mature), you can insert
# #include "foo.moc"
# in foo.cpp and then give foo.cpp as argument to QT4_AUTOMOC(). This will the
# scan all listed files at cmake-time for such included moc files and if it finds
# them cause a rule to be generated to run moc at build time on the
# accompanying header file foo.h.
# If a source file has the SKIP_AUTOMOC property set it will be ignored by this macro.
2007-01-04 02:20:55 +03:00
#
# macro QT4_ADD_DBUS_INTERFACE(outfiles interface basename)
# create a the interface header and implementation files with the
# given basename from the given interface xml file and add it to
# the list of sources
#
# macro QT4_ADD_DBUS_INTERFACES(outfiles inputfile ... )
# create the interface header and implementation files
# for all listed interface xml files
# the name will be automatically determined from the name of the xml file
#
2009-10-03 20:04:15 +04:00
# macro QT4_ADD_DBUS_ADAPTOR(outfiles xmlfile parentheader parentclassname [basename] [classname])
2007-01-04 02:20:55 +03:00
# create a dbus adaptor (header and implementation file) from the xml file
# describing the interface, and add it to the list of sources. The adaptor
# forwards the calls to a parent class, defined in parentheader and named
# parentclassname. The name of the generated files will be
2009-10-03 20:04:15 +04:00
# <basename>adaptor.{cpp,h} where basename defaults to the basename of the xml file.
# If <classname> is provided, then it will be used as the classname of the
# adaptor itself.
2007-01-04 02:20:55 +03:00
#
2009-10-03 20:04:15 +04:00
# macro QT4_GENERATE_DBUS_INTERFACE( header [interfacename] OPTIONS ...)
2007-01-04 02:20:55 +03:00
# generate the xml interface file from the given header.
# If the optional argument interfacename is omitted, the name of the
# interface file is constructed from the basename of the header with
# the suffix .xml appended.
2009-10-03 20:04:15 +04:00
# Options may be given to qdbuscpp2xml, such as those found when executing "qdbuscpp2xml --help"
2007-01-04 02:20:55 +03:00
#
2008-09-18 18:56:58 +04:00
# macro QT4_CREATE_TRANSLATION( qm_files directories ... sources ...
# ts_files ... OPTIONS ...)
2008-01-22 18:11:29 +03:00
# out: qm_files
2008-08-30 17:39:33 +04:00
# in: directories sources ts_files
2008-09-18 18:56:58 +04:00
# options: flags to pass to lupdate, such as -extensions to specify
# extensions for a directory scan.
2008-01-22 18:11:29 +03:00
# generates commands to create .ts (vie lupdate) and .qm
2008-08-30 17:39:33 +04:00
# (via lrelease) - files from directories and/or sources. The ts files are
2008-01-22 18:11:29 +03:00
# created and/or updated in the source tree (unless given with full paths).
# The qm files are generated in the build tree.
# Updating the translations can be done by adding the qm_files
# to the source list of your library/executable, so they are
# always updated, or by adding a custom target to control when
# they get updated/generated.
#
# macro QT4_ADD_TRANSLATION( qm_files ts_files ... )
# out: qm_files
# in: ts_files
# generates commands to create .qm from .ts - files. The generated
# filenames can be found in qm_files. The ts_files
# must exists and are not updated in any way.
#
#
2009-02-20 00:04:57 +03:00
# Below is a detailed list of variables that FindQt4.cmake sets.
2005-12-15 22:17:43 +03:00
# QT_FOUND If false, don't try to use Qt.
# QT4_FOUND If false, don't try to use Qt 4.
2007-01-04 00:01:59 +03:00
#
2008-03-27 22:18:35 +03:00
# QT_VERSION_MAJOR The major version of Qt found.
# QT_VERSION_MINOR The minor version of Qt found.
# QT_VERSION_PATCH The patch version of Qt found.
#
2008-03-13 22:29:28 +03:00
# QT_EDITION Set to the edition of Qt (i.e. DesktopLight)
# QT_EDITION_DESKTOPLIGHT True if QT_EDITION == DesktopLight
# QT_QTCORE_FOUND True if QtCore was found.
# QT_QTGUI_FOUND True if QtGui was found.
# QT_QT3SUPPORT_FOUND True if Qt3Support was found.
# QT_QTASSISTANT_FOUND True if QtAssistant was found.
2009-12-20 17:06:42 +03:00
# QT_QTASSISTANTCLIENT_FOUND True if QtAssistantClient was found.
2009-11-15 21:02:19 +03:00
# QT_QAXCONTAINER_FOUND True if QAxContainer was found (Windows only).
# QT_QAXSERVER_FOUND True if QAxServer was found (Windows only).
2008-03-13 22:29:28 +03:00
# QT_QTDBUS_FOUND True if QtDBus was found.
# QT_QTDESIGNER_FOUND True if QtDesigner was found.
# QT_QTDESIGNERCOMPONENTS True if QtDesignerComponents was found.
2009-12-20 17:06:42 +03:00
# QT_QTHELP_FOUND True if QtHelp was found.
2008-03-13 22:29:28 +03:00
# QT_QTMOTIF_FOUND True if QtMotif was found.
2009-12-20 17:06:42 +03:00
# QT_QTMULTIMEDIA_FOUND True if QtMultimedia was found (since Qt 4.6.0).
2008-03-13 22:29:28 +03:00
# QT_QTNETWORK_FOUND True if QtNetwork was found.
# QT_QTNSPLUGIN_FOUND True if QtNsPlugin was found.
# QT_QTOPENGL_FOUND True if QtOpenGL was found.
# QT_QTSQL_FOUND True if QtSql was found.
# QT_QTSVG_FOUND True if QtSvg was found.
# QT_QTSCRIPT_FOUND True if QtScript was found.
2009-12-20 17:06:42 +03:00
# QT_QTSCRIPTTOOLS_FOUND True if QtScriptTools was found.
2008-03-13 22:29:28 +03:00
# QT_QTTEST_FOUND True if QtTest was found.
# QT_QTUITOOLS_FOUND True if QtUiTools was found.
# QT_QTWEBKIT_FOUND True if QtWebKit was found.
2009-12-20 17:06:42 +03:00
# QT_QTXML_FOUND True if QtXml was found.
2008-03-13 22:29:28 +03:00
# QT_QTXMLPATTERNS_FOUND True if QtXmlPatterns was found.
2008-03-14 02:12:46 +03:00
# QT_PHONON_FOUND True if phonon was found.
2010-02-18 03:12:18 +03:00
# QT_QTDECLARATIVE_FOUND True if QtDeclarative was found.
2008-03-19 01:37:28 +03:00
#
2009-10-02 00:41:00 +04:00
# QT_MAC_USE_COCOA For Mac OS X, its whether Cocoa or Carbon is used.
# In general, this should not be used, but its useful
# when having platform specific code.
2008-03-19 01:37:28 +03:00
#
2006-04-27 23:07:23 +04:00
# QT_DEFINITIONS Definitions to use when compiling code that uses Qt.
2008-03-19 01:37:28 +03:00
# You do not need to use this if you include QT_USE_FILE.
# The QT_USE_FILE will also define QT_DEBUG and QT_NO_DEBUG
# to fit your current build type. Those are not contained
# in QT_DEFINITIONS.
2006-05-20 00:57:49 +04:00
#
# QT_INCLUDES List of paths to all include directories of
2006-04-27 23:07:23 +04:00
# Qt4 QT_INCLUDE_DIR and QT_QTCORE_INCLUDE_DIR are
2005-12-14 21:51:08 +03:00
# always in this variable even if NOTFOUND,
# all other INCLUDE_DIRS are
# only added if they are found.
2008-03-19 01:37:28 +03:00
# You do not need to use this if you include QT_USE_FILE.
2006-05-20 00:57:49 +04:00
#
2008-03-19 01:37:28 +03:00
#
# Include directories for the Qt modules are listed here.
# You do not need to use these variables if you include QT_USE_FILE.
#
2005-12-14 21:51:08 +03:00
# QT_INCLUDE_DIR Path to "include" of Qt4
2006-05-20 00:57:49 +04:00
# QT_QT3SUPPORT_INCLUDE_DIR Path to "include/Qt3Support"
# QT_QTASSISTANT_INCLUDE_DIR Path to "include/QtAssistant"
2009-11-09 20:55:46 +03:00
# QT_QTASSISTANTCLIENT_INCLUDE_DIR Path to "include/QtAssistant"
2009-11-15 21:02:19 +03:00
# QT_QAXCONTAINER_INCLUDE_DIR Path to "include/ActiveQt" (Windows only)
# QT_QAXSERVER_INCLUDE_DIR Path to "include/ActiveQt" (Windows only)
2006-05-20 00:57:49 +04:00
# QT_QTCORE_INCLUDE_DIR Path to "include/QtCore"
2009-11-15 21:02:19 +03:00
# QT_QTDBUS_INCLUDE_DIR Path to "include/QtDBus"
2006-05-20 00:57:49 +04:00
# QT_QTDESIGNER_INCLUDE_DIR Path to "include/QtDesigner"
2007-01-04 00:38:26 +03:00
# QT_QTDESIGNERCOMPONENTS_INCLUDE_DIR Path to "include/QtDesigner"
2006-05-20 00:57:49 +04:00
# QT_QTGUI_INCLUDE_DIR Path to "include/QtGui"
2009-11-09 20:55:46 +03:00
# QT_QTHELP_INCLUDE_DIR Path to "include/QtHelp"
2006-05-20 00:57:49 +04:00
# QT_QTMOTIF_INCLUDE_DIR Path to "include/QtMotif"
2009-12-20 17:06:42 +03:00
# QT_QTMULTIMEDIA_INCLUDE_DIR Path to "include/QtMultimedia"
2006-05-20 00:57:49 +04:00
# QT_QTNETWORK_INCLUDE_DIR Path to "include/QtNetwork"
# QT_QTNSPLUGIN_INCLUDE_DIR Path to "include/QtNsPlugin"
# QT_QTOPENGL_INCLUDE_DIR Path to "include/QtOpenGL"
2009-11-09 20:55:46 +03:00
# QT_QTSCRIPT_INCLUDE_DIR Path to "include/QtScript"
2006-05-20 00:57:49 +04:00
# QT_QTSQL_INCLUDE_DIR Path to "include/QtSql"
2006-04-27 23:07:23 +04:00
# QT_QTSVG_INCLUDE_DIR Path to "include/QtSvg"
# QT_QTTEST_INCLUDE_DIR Path to "include/QtTest"
2008-03-13 22:29:28 +03:00
# QT_QTWEBKIT_INCLUDE_DIR Path to "include/QtWebKit"
2009-11-09 20:55:46 +03:00
# QT_QTXML_INCLUDE_DIR Path to "include/QtXml"
2008-03-13 22:29:28 +03:00
# QT_QTXMLPATTERNS_INCLUDE_DIR Path to "include/QtXmlPatterns"
2008-03-14 02:12:46 +03:00
# QT_PHONON_INCLUDE_DIR Path to "include/phonon"
2009-05-06 17:42:01 +04:00
# QT_QTSCRIPTTOOLS_INCLUDE_DIR Path to "include/QtScriptTools"
2010-02-18 03:12:18 +03:00
# QT_QTDECLARATIVE_INCLUDE_DIR Path to "include/QtDeclarative"
#
2008-12-16 02:48:48 +03:00
# QT_BINARY_DIR Path to "bin" of Qt4
2005-12-14 21:51:08 +03:00
# QT_LIBRARY_DIR Path to "lib" of Qt4
2006-10-13 19:23:44 +04:00
# QT_PLUGINS_DIR Path to "plugins" for Qt4
2008-12-16 02:48:48 +03:00
# QT_TRANSLATIONS_DIR Path to "translations" of Qt4
2010-10-09 06:55:55 +04:00
# QT_IMPORTS_DIR Path to "imports" of Qt4
2008-12-16 02:48:48 +03:00
# QT_DOC_DIR Path to "doc" of Qt4
# QT_MKSPECS_DIR Path to "mkspecs" of Qt4
2009-12-20 17:06:42 +03:00
#
2006-04-27 23:07:23 +04:00
#
2008-03-13 22:29:28 +03:00
# The Qt toolkit may contain both debug and release libraries.
2008-03-19 01:37:28 +03:00
# In that case, the following library variables will contain both.
# You do not need to use these variables if you include QT_USE_FILE,
# and use QT_LIBRARIES.
2008-03-13 22:29:28 +03:00
#
# QT_QT3SUPPORT_LIBRARY The Qt3Support library
# QT_QTASSISTANT_LIBRARY The QtAssistant library
2009-11-09 20:55:46 +03:00
# QT_QTASSISTANTCLIENT_LIBRARY The QtAssistantClient library
2009-02-06 07:01:38 +03:00
# QT_QAXCONTAINER_LIBRARY The QAxContainer library (Windows only)
# QT_QAXSERVER_LIBRARY The QAxServer library (Windows only)
2008-03-13 22:29:28 +03:00
# QT_QTCORE_LIBRARY The QtCore library
# QT_QTDBUS_LIBRARY The QtDBus library
# QT_QTDESIGNER_LIBRARY The QtDesigner library
# QT_QTDESIGNERCOMPONENTS_LIBRARY The QtDesignerComponents library
# QT_QTGUI_LIBRARY The QtGui library
2009-11-09 20:55:46 +03:00
# QT_QTHELP_LIBRARY The QtHelp library
2008-03-13 22:29:28 +03:00
# QT_QTMOTIF_LIBRARY The QtMotif library
2009-12-20 17:06:42 +03:00
# QT_QTMULTIMEDIA_LIBRARY The QtMultimedia library
2008-03-13 22:29:28 +03:00
# QT_QTNETWORK_LIBRARY The QtNetwork library
# QT_QTNSPLUGIN_LIBRARY The QtNsPLugin library
# QT_QTOPENGL_LIBRARY The QtOpenGL library
2009-11-09 20:55:46 +03:00
# QT_QTSCRIPT_LIBRARY The QtScript library
2008-03-13 22:29:28 +03:00
# QT_QTSQL_LIBRARY The QtSql library
# QT_QTSVG_LIBRARY The QtSvg library
# QT_QTTEST_LIBRARY The QtTest library
# QT_QTUITOOLS_LIBRARY The QtUiTools library
# QT_QTWEBKIT_LIBRARY The QtWebKit library
2009-11-09 20:55:46 +03:00
# QT_QTXML_LIBRARY The QtXml library
2008-03-13 22:29:28 +03:00
# QT_QTXMLPATTERNS_LIBRARY The QtXmlPatterns library
2009-11-09 20:55:46 +03:00
# QT_QTMAIN_LIBRARY The qtmain library for Windows
2008-03-14 02:12:46 +03:00
# QT_PHONON_LIBRARY The phonon library
2009-05-06 17:42:01 +04:00
# QT_QTSCRIPTTOOLS_LIBRARY The QtScriptTools library
2006-05-20 00:57:49 +04:00
#
2010-02-18 03:12:18 +03:00
# The QtDeclarative library: QT_QTDECLARATIVE_LIBRARY
#
2006-04-27 23:07:23 +04:00
# also defined, but NOT for general use are
2009-09-23 02:44:24 +04:00
# QT_MOC_EXECUTABLE Where to find the moc tool.
# QT_UIC_EXECUTABLE Where to find the uic tool.
# QT_UIC3_EXECUTABLE Where to find the uic3 tool.
# QT_RCC_EXECUTABLE Where to find the rcc tool
# QT_DBUSCPP2XML_EXECUTABLE Where to find the qdbuscpp2xml tool.
# QT_DBUSXML2CPP_EXECUTABLE Where to find the qdbusxml2cpp tool.
# QT_LUPDATE_EXECUTABLE Where to find the lupdate tool.
# QT_LRELEASE_EXECUTABLE Where to find the lrelease tool.
# QT_QCOLLECTIONGENERATOR_EXECUTABLE Where to find the qcollectiongenerator tool.
2009-11-24 01:53:50 +03:00
# QT_DESIGNER_EXECUTABLE Where to find the Qt designer tool.
# QT_LINGUIST_EXECUTABLE Where to find the Qt linguist tool.
2006-05-20 00:57:49 +04:00
#
2006-04-27 23:07:23 +04:00
#
2006-05-20 00:57:49 +04:00
# These are around for backwards compatibility
2005-07-15 20:14:47 +04:00
# they will be set
2005-12-15 22:17:43 +03:00
# QT_WRAP_CPP Set true if QT_MOC_EXECUTABLE is found
# QT_WRAP_UI Set true if QT_UIC_EXECUTABLE is found
2006-05-20 00:57:49 +04:00
#
2005-07-15 20:14:47 +04:00
# These variables do _NOT_ have any effect anymore (compared to FindQt.cmake)
2005-12-14 21:51:08 +03:00
# QT_MT_REQUIRED Qt4 is now always multithreaded
2006-05-20 00:57:49 +04:00
#
# These variables are set to "" Because Qt structure changed
2005-12-15 22:17:43 +03:00
# (They make no sense in Qt4)
2006-04-27 23:07:23 +04:00
# QT_QT_LIBRARY Qt-Library is now split
2009-09-28 19:45:50 +04:00
#=============================================================================
# Copyright 2005-2009 Kitware, Inc.
#
# Distributed under the OSI-approved BSD License (the "License");
# see accompanying file Copyright.txt for details.
#
# This software is distributed WITHOUT ANY WARRANTY; without even the
# implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
# See the License for more information.
#=============================================================================
2010-08-07 04:48:47 +04:00
# (To distribute this file outside of CMake, substitute the full
2009-09-28 19:45:50 +04:00
# License text for the above reference.)
2009-02-20 00:04:57 +03:00
# Use FIND_PACKAGE( Qt4 COMPONENTS ... ) to enable modules
IF ( Qt4_FIND_COMPONENTS )
FOREACH ( component ${ Qt4_FIND_COMPONENTS } )
STRING ( TOUPPER ${ component } _COMPONENT )
SET ( QT_USE_ ${ _COMPONENT } 1 )
ENDFOREACH ( component )
# To make sure we don't use QtCore or QtGui when not in COMPONENTS
IF ( NOT QT_USE_QTCORE )
SET ( QT_DONT_USE_QTCORE 1 )
ENDIF ( NOT QT_USE_QTCORE )
IF ( NOT QT_USE_QTGUI )
SET ( QT_DONT_USE_QTGUI 1 )
ENDIF ( NOT QT_USE_QTGUI )
ENDIF ( Qt4_FIND_COMPONENTS )
2008-08-17 03:11:53 +04:00
# If Qt3 has already been found, fail.
IF ( QT_QT_LIBRARY )
IF ( Qt4_FIND_REQUIRED )
2009-05-19 19:38:18 +04:00
MESSAGE ( FATAL_ERROR "Qt3 and Qt4 cannot be used together in one project. If switching to Qt4, the CMakeCache.txt needs to be cleaned." )
2008-08-17 03:11:53 +04:00
ELSE ( Qt4_FIND_REQUIRED )
IF ( NOT Qt4_FIND_QUIETLY )
2009-05-19 19:38:18 +04:00
MESSAGE ( STATUS "Qt3 and Qt4 cannot be used together in one project. If switching to Qt4, the CMakeCache.txt needs to be cleaned." )
2008-08-17 03:11:53 +04:00
ENDIF ( NOT Qt4_FIND_QUIETLY )
RETURN ( )
ENDIF ( Qt4_FIND_REQUIRED )
2008-08-17 13:11:51 +04:00
ENDIF ( QT_QT_LIBRARY )
2008-08-17 03:11:53 +04:00
2011-07-28 22:15:46 +04:00
INCLUDE ( CheckCXXSymbolExists )
2006-06-16 22:45:47 +04:00
INCLUDE ( MacroAddFileDependencies )
2011-01-20 19:45:39 +03:00
INCLUDE ( ${ CMAKE_CURRENT_LIST_DIR } /FindPackageHandleStandardArgs.cmake )
2005-07-15 20:14:47 +04:00
2005-09-08 17:58:41 +04:00
SET ( QT_USE_FILE ${ CMAKE_ROOT } /Modules/UseQt4.cmake )
SET ( QT_DEFINITIONS "" )
2010-07-03 01:43:38 +04:00
# convenience macro for dealing with debug/release library names
MACRO ( _QT4_ADJUST_LIB_VARS _camelCaseBasename )
STRING ( TOUPPER "${_camelCaseBasename}" basename )
# The name of the imported targets, i.e. the prefix "Qt4::" must not change,
# since it is stored in EXPORT-files as name of a required library. If the name would change
# here, this would lead to the imported Qt4-library targets not being resolved by cmake anymore.
IF ( QT_ ${ basename } _LIBRARY_RELEASE OR QT_ ${ basename } _LIBRARY_DEBUG )
IF ( NOT TARGET Qt4:: ${ _camelCaseBasename } )
ADD_LIBRARY ( Qt4:: ${ _camelCaseBasename } UNKNOWN IMPORTED )
IF ( QT_ ${ basename } _LIBRARY_RELEASE )
SET_PROPERTY ( TARGET Qt4:: ${ _camelCaseBasename } APPEND PROPERTY IMPORTED_CONFIGURATIONS RELEASE )
2011-06-14 03:21:41 +04:00
if ( QT_USE_FRAMEWORKS )
SET_PROPERTY ( TARGET Qt4:: ${ _camelCaseBasename } PROPERTY IMPORTED_LOCATION_RELEASE "${QT_${basename}_LIBRARY_RELEASE}/${_camelCaseBasename}" )
else ( )
SET_PROPERTY ( TARGET Qt4:: ${ _camelCaseBasename } PROPERTY IMPORTED_LOCATION_RELEASE "${QT_${basename}_LIBRARY_RELEASE}" )
endif ( )
2010-07-03 01:43:38 +04:00
ENDIF ( QT_ ${ basename } _LIBRARY_RELEASE )
IF ( QT_ ${ basename } _LIBRARY_DEBUG )
SET_PROPERTY ( TARGET Qt4:: ${ _camelCaseBasename } APPEND PROPERTY IMPORTED_CONFIGURATIONS DEBUG )
2011-06-14 03:21:41 +04:00
if ( QT_USE_FRAMEWORKS )
SET_PROPERTY ( TARGET Qt4:: ${ _camelCaseBasename } PROPERTY IMPORTED_LOCATION_DEBUG "${QT_${basename}_LIBRARY_DEBUG}/${_camelCaseBasename}" )
else ( )
SET_PROPERTY ( TARGET Qt4:: ${ _camelCaseBasename } PROPERTY IMPORTED_LOCATION_DEBUG "${QT_${basename}_LIBRARY_DEBUG}" )
endif ( )
2010-07-03 01:43:38 +04:00
ENDIF ( QT_ ${ basename } _LIBRARY_DEBUG )
ENDIF ( NOT TARGET Qt4:: ${ _camelCaseBasename } )
# If QT_USE_IMPORTED_TARGETS is enabled, the QT_QTFOO_LIBRARY variables are set to point at these
# imported targets. This works better in general, and is also in almost all cases fully
# backward compatible. The only issue is when a project A which had this enabled then exports its
# libraries via export or EXPORT_LIBRARY_DEPENDENCIES(). In this case the libraries from project
# A will depend on the imported Qt targets, and the names of these imported targets will be stored
# in the dependency files on disk. This means when a project B then uses project A, these imported
# targets must be created again, otherwise e.g. "Qt4__QtCore" will be interpreted as name of a
# library file on disk, and not as a target, and linking will fail:
IF ( QT_USE_IMPORTED_TARGETS )
SET ( QT_ ${ basename } _LIBRARY Qt4:: ${ _camelCaseBasename } )
SET ( QT_ ${ basename } _LIBRARIES Qt4:: ${ _camelCaseBasename } )
ELSE ( QT_USE_IMPORTED_TARGETS )
# if the release- as well as the debug-version of the library have been found:
IF ( QT_ ${ basename } _LIBRARY_DEBUG AND QT_ ${ basename } _LIBRARY_RELEASE )
# if the generator supports configuration types then set
# optimized and debug libraries, or if the CMAKE_BUILD_TYPE has a value
IF ( CMAKE_CONFIGURATION_TYPES OR CMAKE_BUILD_TYPE )
SET ( QT_ ${ basename } _LIBRARY optimized ${ QT_${basename } _LIBRARY_RELEASE} debug ${ QT_${basename } _LIBRARY_DEBUG} )
ELSE ( CMAKE_CONFIGURATION_TYPES OR CMAKE_BUILD_TYPE )
# if there are no configuration types and CMAKE_BUILD_TYPE has no value
# then just use the release libraries
SET ( QT_ ${ basename } _LIBRARY ${ QT_${basename } _LIBRARY_RELEASE} )
ENDIF ( CMAKE_CONFIGURATION_TYPES OR CMAKE_BUILD_TYPE )
SET ( QT_ ${ basename } _LIBRARIES optimized ${ QT_${basename } _LIBRARY_RELEASE} debug ${ QT_${basename } _LIBRARY_DEBUG} )
ENDIF ( QT_ ${ basename } _LIBRARY_DEBUG AND QT_ ${ basename } _LIBRARY_RELEASE )
# if only the release version was found, set the debug variable also to the release version
IF ( QT_ ${ basename } _LIBRARY_RELEASE AND NOT QT_ ${ basename } _LIBRARY_DEBUG )
SET ( QT_ ${ basename } _LIBRARY_DEBUG ${ QT_${basename } _LIBRARY_RELEASE} )
SET ( QT_ ${ basename } _LIBRARY ${ QT_${basename } _LIBRARY_RELEASE} )
SET ( QT_ ${ basename } _LIBRARIES ${ QT_${basename } _LIBRARY_RELEASE} )
ENDIF ( QT_ ${ basename } _LIBRARY_RELEASE AND NOT QT_ ${ basename } _LIBRARY_DEBUG )
# if only the debug version was found, set the release variable also to the debug version
IF ( QT_ ${ basename } _LIBRARY_DEBUG AND NOT QT_ ${ basename } _LIBRARY_RELEASE )
SET ( QT_ ${ basename } _LIBRARY_RELEASE ${ QT_${basename } _LIBRARY_DEBUG} )
SET ( QT_ ${ basename } _LIBRARY ${ QT_${basename } _LIBRARY_DEBUG} )
SET ( QT_ ${ basename } _LIBRARIES ${ QT_${basename } _LIBRARY_DEBUG} )
ENDIF ( QT_ ${ basename } _LIBRARY_DEBUG AND NOT QT_ ${ basename } _LIBRARY_RELEASE )
# put the value in the cache:
SET ( QT_ ${ basename } _LIBRARY ${ QT_${basename } _LIBRARY} CACHE STRING "The Qt ${basename} library" FORCE )
ENDIF ( QT_USE_IMPORTED_TARGETS )
SET ( QT_ ${ basename } _FOUND 1 )
2010-07-06 23:24:53 +04:00
ELSE ( QT_ ${ basename } _LIBRARY_RELEASE OR QT_ ${ basename } _LIBRARY_DEBUG )
SET ( QT_ ${ basename } _LIBRARY "" CACHE STRING "The Qt ${basename} library" FORCE )
2010-07-03 01:43:38 +04:00
ENDIF ( QT_ ${ basename } _LIBRARY_RELEASE OR QT_ ${ basename } _LIBRARY_DEBUG )
IF ( QT_ ${ basename } _INCLUDE_DIR )
#add the include directory to QT_INCLUDES
SET ( QT_INCLUDES "${QT_${basename}_INCLUDE_DIR}" ${ QT_INCLUDES } )
ENDIF ( QT_ ${ basename } _INCLUDE_DIR )
# Make variables changeble to the advanced user
MARK_AS_ADVANCED ( QT_ ${ basename } _LIBRARY QT_ ${ basename } _LIBRARY_RELEASE QT_ ${ basename } _LIBRARY_DEBUG QT_ ${ basename } _INCLUDE_DIR )
ENDMACRO ( _QT4_ADJUST_LIB_VARS )
2010-10-09 06:55:55 +04:00
function ( _QT4_QUERY_QMAKE VAR RESULT )
2011-01-18 05:14:22 +03:00
execute_process ( COMMAND "${QT_QMAKE_EXECUTABLE}" -query ${ VAR }
R E S U L T _ V A R I A B L E r e t u r n _ c o d e
O U T P U T _ V A R I A B L E o u t p u t E R R O R _ V A R I A B L E o u t p u t
O U T P U T _ S T R I P _ T R A I L I N G _ W H I T E S P A C E E R R O R _ S T R I P _ T R A I L I N G _ W H I T E S P A C E )
2010-10-09 06:55:55 +04:00
if ( NOT return_code )
file ( TO_CMAKE_PATH "${output}" output )
set ( ${ RESULT } ${ output } PARENT_SCOPE )
endif ( NOT return_code )
endfunction ( _QT4_QUERY_QMAKE )
2010-07-03 01:43:38 +04:00
2006-04-27 23:07:23 +04:00
SET ( QT4_INSTALLED_VERSION_TOO_OLD FALSE )
2007-09-27 04:53:29 +04:00
GET_FILENAME_COMPONENT ( qt_install_version "[HKEY_CURRENT_USER\\Software\\trolltech\\Versions;DefaultQtVersion]" NAME )
2007-01-05 00:35:47 +03:00
# check for qmake
2009-11-12 20:55:19 +03:00
# Debian uses qmake-qt4
# macports' Qt uses qmake-mac
2010-03-17 19:46:22 +03:00
FIND_PROGRAM ( QT_QMAKE_EXECUTABLE NAMES qmake qmake4 qmake-qt4 qmake-mac PATHS
2007-01-05 00:35:47 +03: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 \ \ 4 . 0 . 0 ; I n s t a l l D i r ] / b i n "
" [ 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 ] / b i n "
2007-09-27 04:53:29 +04: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 \ \ V e r s i o n s \ \ $ { q t _ i n s t a l l _ v e r s i o n } ; I n s t a l l D i r ] / b i n "
2007-01-05 00:35:47 +03:00
$ E N V { Q T D I R } / b i n
2010-03-17 16:43:22 +03:00
D O C " T h e q m a k e e x e c u t a b l e f o r t h e Q t i n s t a l l a t i o n t o u s e "
2007-01-05 00:35:47 +03:00
)
2006-04-27 23:07:23 +04:00
2011-01-15 07:26:19 +03:00
# double check that it was a Qt4 qmake, if not, re-find with different names
2006-04-27 23:07:23 +04:00
IF ( QT_QMAKE_EXECUTABLE )
2009-02-07 20:23:02 +03:00
IF ( QT_QMAKE_EXECUTABLE_LAST )
STRING ( COMPARE NOTEQUAL "${QT_QMAKE_EXECUTABLE_LAST}" "${QT_QMAKE_EXECUTABLE}" QT_QMAKE_CHANGED )
ENDIF ( QT_QMAKE_EXECUTABLE_LAST )
2008-10-14 06:12:54 +04:00
SET ( QT_QMAKE_EXECUTABLE_LAST "${QT_QMAKE_EXECUTABLE}" CACHE INTERNAL "" FORCE )
2010-10-09 06:55:55 +04:00
_qt4_query_qmake ( QT_VERSION QTVERSION )
2007-12-16 13:49:23 +03:00
2007-01-05 01:29:01 +03:00
# check for qt3 qmake and then try and find qmake4 or qmake-qt4 in the path
2010-10-16 02:36:14 +04:00
IF ( NOT QTVERSION )
2006-10-04 18:33:10 +04:00
SET ( QT_QMAKE_EXECUTABLE NOTFOUND CACHE FILEPATH "" FORCE )
2007-01-05 00:35:47 +03:00
FIND_PROGRAM ( QT_QMAKE_EXECUTABLE NAMES qmake4 qmake-qt4 PATHS
2006-10-04 18:33:10 +04: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 \ \ 4 . 0 . 0 ; I n s t a l l D i r ] / b i n "
" [ 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 ] / b i n "
$ E N V { Q T D I R } / b i n
2010-03-17 16:43:22 +03:00
D O C " T h e q m a k e e x e c u t a b l e f o r t h e Q t i n s t a l l a t i o n t o u s e "
2006-10-04 18:33:10 +04:00
)
IF ( QT_QMAKE_EXECUTABLE )
2010-10-09 06:55:55 +04:00
_qt4_query_qmake ( QT_VERSION QTVERSION )
2006-10-04 18:33:10 +04:00
ENDIF ( QT_QMAKE_EXECUTABLE )
2010-10-16 02:36:14 +04:00
ENDIF ( NOT QTVERSION )
2007-01-05 00:35:47 +03:00
2006-04-27 23:07:23 +04:00
ENDIF ( QT_QMAKE_EXECUTABLE )
2011-01-15 07:26:19 +03:00
IF ( QT_QMAKE_EXECUTABLE AND QTVERSION )
2006-04-27 23:07:23 +04:00
2010-07-03 01:43:38 +04:00
# ask qmake for the mkspecs directory
# we do this first because QT_LIBINFIX might be set
IF ( NOT QT_MKSPECS_DIR OR QT_QMAKE_CHANGED )
2010-10-09 06:55:55 +04:00
_qt4_query_qmake ( QMAKE_MKSPECS qt_mkspecs_dirs )
2010-07-03 01:43:38 +04:00
# do not replace : on windows as it might be a drive letter
# and windows should already use ; as a separator
2010-07-03 18:58:25 +04:00
IF ( NOT WIN32 )
2010-07-03 01:43:38 +04:00
STRING ( REPLACE ":" ";" qt_mkspecs_dirs "${qt_mkspecs_dirs}" )
2010-07-03 18:58:25 +04:00
ENDIF ( NOT WIN32 )
2010-07-03 01:43:38 +04:00
set ( qt_cross_paths )
foreach ( qt_cross_path ${ CMAKE_FIND_ROOT_PATH } )
set ( qt_cross_paths ${ qt_cross_paths } "${qt_cross_path}/mkspecs" )
endforeach ( qt_cross_path )
2010-07-06 23:24:53 +04:00
SET ( QT_MKSPECS_DIR NOTFOUND )
2010-07-03 01:43:38 +04:00
FIND_PATH ( QT_MKSPECS_DIR NAMES qconfig.pri
H I N T S $ { q t _ c r o s s _ p a t h s } $ { q t _ m k s p e c s _ d i r s }
D O C " T h e l o c a t i o n o f t h e Q t m k s p e c s c o n t a i n i n g q c o n f i g . p r i " )
ENDIF ( )
IF ( EXISTS "${QT_MKSPECS_DIR}/qconfig.pri" )
FILE ( READ ${ QT_MKSPECS_DIR } /qconfig.pri _qconfig_FILE_contents )
STRING ( REGEX MATCH "QT_CONFIG[^\n]+" QT_QCONFIG "${_qconfig_FILE_contents}" )
STRING ( REGEX MATCH "CONFIG[^\n]+" QT_CONFIG "${_qconfig_FILE_contents}" )
STRING ( REGEX MATCH "EDITION[^\n]+" QT_EDITION "${_qconfig_FILE_contents}" )
STRING ( REGEX MATCH "QT_LIBINFIX[^\n]+" _qconfig_qt_libinfix "${_qconfig_FILE_contents}" )
STRING ( REGEX REPLACE "QT_LIBINFIX *= *([^\n]*)" "\\1" QT_LIBINFIX "${_qconfig_qt_libinfix}" )
ENDIF ( EXISTS "${QT_MKSPECS_DIR}/qconfig.pri" )
IF ( "${QT_EDITION}" MATCHES "DesktopLight" )
SET ( QT_EDITION_DESKTOPLIGHT 1 )
ENDIF ( "${QT_EDITION}" MATCHES "DesktopLight" )
# ask qmake for the library dir as a hint, then search for QtCore library and use that as a reference for finding the
# others and for setting QT_LIBRARY_DIR
2011-06-14 03:21:41 +04:00
IF ( NOT ( QT_QTCORE_LIBRARY_RELEASE OR QT_QTCORE_LIBRARY_DEBUG ) OR QT_QMAKE_CHANGED )
2010-10-09 06:55:55 +04:00
_qt4_query_qmake ( QT_INSTALL_LIBS QT_LIBRARY_DIR_TMP )
2010-07-06 23:24:53 +04:00
SET ( QT_QTCORE_LIBRARY_RELEASE NOTFOUND )
SET ( QT_QTCORE_LIBRARY_DEBUG NOTFOUND )
2010-07-03 01:43:38 +04:00
FIND_LIBRARY ( QT_QTCORE_LIBRARY_RELEASE
N A M E S Q t C o r e $ { Q T _ L I B I N F I X } Q t C o r e $ { Q T _ L I B I N F I X } 4
H I N T S $ { Q T _ L I B R A R Y _ D I R _ T M P }
2011-02-20 01:30:02 +03:00
N O _ D E F A U L T _ P A T H
2010-07-03 01:43:38 +04:00
)
FIND_LIBRARY ( QT_QTCORE_LIBRARY_DEBUG
N A M E S Q t C o r e $ { Q T _ L I B I N F I X } _ d e b u g Q t C o r e $ { Q T _ L I B I N F I X } d Q t C o r e $ { Q T _ L I B I N F I X } d 4
H I N T S $ { Q T _ L I B R A R Y _ D I R _ T M P }
2011-02-20 01:30:02 +03:00
N O _ D E F A U L T _ P A T H
2010-07-03 01:43:38 +04:00
)
2010-07-15 20:23:32 +04:00
2011-02-20 01:30:02 +03:00
IF ( NOT QT_QTCORE_LIBRARY_RELEASE AND NOT QT_QTCORE_LIBRARY_DEBUG )
FIND_LIBRARY ( QT_QTCORE_LIBRARY_RELEASE
N A M E S Q t C o r e $ { Q T _ L I B I N F I X } Q t C o r e $ { Q T _ L I B I N F I X } 4
H I N T S $ { Q T _ L I B R A R Y _ D I R _ T M P }
)
FIND_LIBRARY ( QT_QTCORE_LIBRARY_DEBUG
N A M E S Q t C o r e $ { Q T _ L I B I N F I X } _ d e b u g Q t C o r e $ { Q T _ L I B I N F I X } d Q t C o r e $ { Q T _ L I B I N F I X } d 4
H I N T S $ { Q T _ L I B R A R Y _ D I R _ T M P }
)
ENDIF ( NOT QT_QTCORE_LIBRARY_RELEASE AND NOT QT_QTCORE_LIBRARY_DEBUG )
2010-07-15 20:23:32 +04:00
# try dropping a hint if trying to use Visual Studio with Qt built by mingw
IF ( NOT QT_QTCORE_LIBRARY_RELEASE AND MSVC )
IF ( EXISTS ${ QT_LIBRARY_DIR_TMP } /libqtmain.a )
MESSAGE ( FATAL_ERROR "It appears you're trying to use Visual Studio with Qt built by mingw. Those compilers do not produce code compatible with each other." )
ENDIF ( EXISTS ${ QT_LIBRARY_DIR_TMP } /libqtmain.a )
ENDIF ( NOT QT_QTCORE_LIBRARY_RELEASE AND MSVC )
2011-06-14 03:21:41 +04:00
ENDIF ( )
2010-07-03 01:43:38 +04:00
# set QT_LIBRARY_DIR based on location of QtCore found.
IF ( QT_QTCORE_LIBRARY_RELEASE )
GET_FILENAME_COMPONENT ( QT_LIBRARY_DIR_TMP "${QT_QTCORE_LIBRARY_RELEASE}" PATH )
SET ( QT_LIBRARY_DIR ${ QT_LIBRARY_DIR_TMP } CACHE INTERNAL "Qt library dir" FORCE )
SET ( QT_QTCORE_FOUND 1 )
ELSEIF ( QT_QTCORE_LIBRARY_DEBUG )
GET_FILENAME_COMPONENT ( QT_LIBRARY_DIR_TMP "${QT_QTCORE_LIBRARY_DEBUG}" PATH )
SET ( QT_LIBRARY_DIR ${ QT_LIBRARY_DIR_TMP } CACHE INTERNAL "Qt library dir" FORCE )
SET ( QT_QTCORE_FOUND 1 )
ELSE ( )
MESSAGE ( "Warning: QT_QMAKE_EXECUTABLE reported QT_INSTALL_LIBS as ${QT_LIBRARY_DIR_TMP}" )
2010-09-24 02:50:09 +04:00
MESSAGE ( "Warning: But QtCore couldn't be found. Qt must NOT be installed correctly, or it wasn't found for cross compiling." )
2010-07-03 01:43:38 +04:00
IF ( Qt4_FIND_REQUIRED )
MESSAGE ( FATAL_ERROR "Could NOT find QtCore. Check ${CMAKE_BINARY_DIR}${CMAKE_FILES_DIRECTORY}/CMakeError.log for more details." )
ENDIF ( Qt4_FIND_REQUIRED )
ENDIF ( )
2006-04-27 23:07:23 +04:00
# ask qmake for the binary dir
2010-07-03 01:43:38 +04:00
IF ( NOT QT_BINARY_DIR OR QT_QMAKE_CHANGED )
2010-10-09 06:55:55 +04:00
_qt4_query_qmake ( QT_INSTALL_BINS qt_bins )
SET ( QT_BINARY_DIR ${ qt_bins } CACHE INTERNAL "" FORCE )
2010-07-03 01:43:38 +04:00
ENDIF ( NOT QT_BINARY_DIR OR QT_QMAKE_CHANGED )
2006-04-27 23:07:23 +04:00
2011-07-25 22:30:30 +04:00
IF ( APPLE )
SET ( CMAKE_FIND_FRAMEWORK_OLD ${ CMAKE_FIND_FRAMEWORK } )
IF ( EXISTS ${ QT_LIBRARY_DIR } /QtCore.framework )
SET ( QT_USE_FRAMEWORKS ON CACHE INTERNAL "" FORCE )
SET ( CMAKE_FIND_FRAMEWORK FIRST )
ELSE ( EXISTS ${ QT_LIBRARY_DIR } /QtCore.framework )
SET ( QT_USE_FRAMEWORKS OFF CACHE INTERNAL "" FORCE )
SET ( CMAKE_FIND_FRAMEWORK LAST )
ENDIF ( EXISTS ${ QT_LIBRARY_DIR } /QtCore.framework )
ENDIF ( APPLE )
2006-04-27 23:07:23 +04:00
# ask qmake for the include dir
2010-07-03 01:43:38 +04:00
IF ( QT_LIBRARY_DIR AND ( NOT QT_QTCORE_INCLUDE_DIR OR NOT QT_HEADERS_DIR OR QT_QMAKE_CHANGED ) )
2010-10-09 06:55:55 +04:00
_qt4_query_qmake ( QT_INSTALL_HEADERS qt_headers )
2010-07-03 01:43:38 +04:00
SET ( QT_QTCORE_INCLUDE_DIR NOTFOUND )
FIND_PATH ( QT_QTCORE_INCLUDE_DIR QtCore
2011-02-20 01:30:02 +03:00
H I N T S $ { q t _ h e a d e r s } $ { Q T _ L I B R A R Y _ D I R }
2011-07-22 23:38:36 +04:00
P A T H _ S U F F I X E S Q t C o r e q t 4 / Q t C o r e
2010-07-03 01:43:38 +04:00
)
# Set QT_HEADERS_DIR based on finding QtCore header
IF ( QT_QTCORE_INCLUDE_DIR )
IF ( QT_USE_FRAMEWORKS )
SET ( QT_HEADERS_DIR "${qt_headers}" CACHE INTERNAL "" FORCE )
ELSE ( QT_USE_FRAMEWORKS )
GET_FILENAME_COMPONENT ( qt_headers "${QT_QTCORE_INCLUDE_DIR}/../" ABSOLUTE )
SET ( QT_HEADERS_DIR "${qt_headers}" CACHE INTERNAL "" FORCE )
ENDIF ( QT_USE_FRAMEWORKS )
ELSEIF ( )
MESSAGE ( "Warning: QT_QMAKE_EXECUTABLE reported QT_INSTALL_HEADERS as ${qt_headers}" )
MESSAGE ( "Warning: But QtCore couldn't be found. Qt must NOT be installed correctly." )
ENDIF ( )
ENDIF ( )
2011-02-20 01:30:02 +03:00
IF ( APPLE )
SET ( CMAKE_FIND_FRAMEWORK ${ CMAKE_FIND_FRAMEWORK_OLD } )
ENDIF ( APPLE )
2010-07-03 01:43:38 +04:00
# Set QT_INCLUDE_DIR based on QT_HEADERS_DIR
IF ( QT_HEADERS_DIR )
IF ( QT_USE_FRAMEWORKS )
# Qt/Mac frameworks has two include dirs.
# One is the framework include for which CMake will add a -F flag
# and the other is an include dir for non-framework Qt modules
2011-06-14 03:21:41 +04:00
SET ( QT_INCLUDE_DIR ${ QT_HEADERS_DIR } ${ QT_QTCORE_LIBRARY_RELEASE } )
2010-07-03 01:43:38 +04:00
ELSE ( QT_USE_FRAMEWORKS )
SET ( QT_INCLUDE_DIR ${ QT_HEADERS_DIR } )
ENDIF ( QT_USE_FRAMEWORKS )
ENDIF ( QT_HEADERS_DIR )
# Set QT_INCLUDES
SET ( QT_INCLUDES ${ QT_MKSPECS_DIR } /default ${ QT_INCLUDE_DIR } ${ QT_QTCORE_INCLUDE_DIR } )
2006-04-27 23:07:23 +04:00
# ask qmake for the documentation directory
2009-10-04 19:31:30 +04:00
IF ( QT_LIBRARY_DIR AND NOT QT_DOC_DIR OR QT_QMAKE_CHANGED )
2010-10-09 06:55:55 +04:00
_qt4_query_qmake ( QT_INSTALL_DOCS qt_doc_dir )
2008-10-14 06:12:54 +04:00
SET ( QT_DOC_DIR ${ qt_doc_dir } CACHE PATH "The location of the Qt docs" FORCE )
2009-10-04 19:31:30 +04:00
ENDIF ( QT_LIBRARY_DIR AND NOT QT_DOC_DIR OR QT_QMAKE_CHANGED )
2006-04-27 23:07:23 +04:00
2006-10-13 19:23:44 +04:00
# ask qmake for the plugins directory
2009-10-04 19:31:30 +04:00
IF ( QT_LIBRARY_DIR AND NOT QT_PLUGINS_DIR OR QT_QMAKE_CHANGED )
2010-10-09 06:55:55 +04:00
_qt4_query_qmake ( QT_INSTALL_PLUGINS qt_plugins_dir )
2010-07-07 00:37:16 +04:00
SET ( QT_PLUGINS_DIR NOTFOUND )
foreach ( qt_cross_path ${ CMAKE_FIND_ROOT_PATH } )
set ( qt_cross_paths ${ qt_cross_paths } "${qt_cross_path}/plugins" )
endforeach ( qt_cross_path )
FIND_PATH ( QT_PLUGINS_DIR NAMES accessible imageformats sqldrivers codecs designer
H I N T S $ { q t _ c r o s s _ p a t h s } $ { q t _ p l u g i n s _ d i r }
D O C " T h e l o c a t i o n o f t h e Q t p l u g i n s " )
2009-10-04 19:31:30 +04:00
ENDIF ( QT_LIBRARY_DIR AND NOT QT_PLUGINS_DIR OR QT_QMAKE_CHANGED )
2008-12-16 02:48:48 +03:00
# ask qmake for the translations directory
2009-10-04 19:31:30 +04:00
IF ( QT_LIBRARY_DIR AND NOT QT_TRANSLATIONS_DIR OR QT_QMAKE_CHANGED )
2010-10-09 06:55:55 +04:00
_qt4_query_qmake ( QT_INSTALL_TRANSLATIONS qt_translations_dir )
2008-12-16 02:48:48 +03:00
SET ( QT_TRANSLATIONS_DIR ${ qt_translations_dir } CACHE PATH "The location of the Qt translations" FORCE )
2009-10-04 19:31:30 +04:00
ENDIF ( QT_LIBRARY_DIR AND NOT QT_TRANSLATIONS_DIR OR QT_QMAKE_CHANGED )
2008-12-16 02:48:48 +03:00
2010-10-09 06:55:55 +04:00
# ask qmake for the imports directory
IF ( QT_LIBRARY_DIR AND NOT QT_IMPORTS_DIR OR QT_QMAKE_CHANGED )
_qt4_query_qmake ( QT_INSTALL_IMPORTS qt_imports_dir )
if ( qt_imports_dir )
SET ( QT_IMPORTS_DIR NOTFOUND )
foreach ( qt_cross_path ${ CMAKE_FIND_ROOT_PATH } )
set ( qt_cross_paths ${ qt_cross_paths } "${qt_cross_path}/imports" )
endforeach ( qt_cross_path )
FIND_PATH ( QT_IMPORTS_DIR NAMES Qt
H I N T S $ { q t _ c r o s s _ p a t h s } $ { q t _ i m p o r t s _ d i r }
D O C " T h e l o c a t i o n o f t h e Q t i m p o r t s "
N O _ C M A K E _ P A T H N O _ C M A K E _ E N V I R O N M E N T _ P A T H N O _ S Y S T E M _ E N V I R O N M E N T _ P A T H
N O _ C M A K E _ S Y S T E M _ P A T H )
mark_as_advanced ( QT_IMPORTS_DIR )
endif ( qt_imports_dir )
ENDIF ( QT_LIBRARY_DIR AND NOT QT_IMPORTS_DIR OR QT_QMAKE_CHANGED )
2009-11-08 21:01:46 +03:00
# Make variables changeble to the advanced user
MARK_AS_ADVANCED ( QT_LIBRARY_DIR QT_DOC_DIR QT_MKSPECS_DIR
Q T _ P L U G I N S _ D I R Q T _ T R A N S L A T I O N S _ D I R )
2010-07-03 01:43:38 +04:00
2009-11-17 22:44:33 +03:00
#############################################
#
# Find out what window system we're using
#
#############################################
# Save required variable
SET ( CMAKE_REQUIRED_INCLUDES_SAVE ${ CMAKE_REQUIRED_INCLUDES } )
SET ( CMAKE_REQUIRED_FLAGS_SAVE ${ CMAKE_REQUIRED_FLAGS } )
# Add QT_INCLUDE_DIR to CMAKE_REQUIRED_INCLUDES
2010-07-03 01:43:38 +04:00
SET ( CMAKE_REQUIRED_INCLUDES "${CMAKE_REQUIRED_INCLUDES};${QT_INCLUDE_DIR}" )
2009-11-17 22:44:33 +03:00
# Check for Window system symbols (note: only one should end up being set)
2011-07-28 22:15:46 +04:00
CHECK_CXX_SYMBOL_EXISTS ( Q_WS_X11 "QtCore/qglobal.h" Q_WS_X11 )
CHECK_CXX_SYMBOL_EXISTS ( Q_WS_WIN "QtCore/qglobal.h" Q_WS_WIN )
CHECK_CXX_SYMBOL_EXISTS ( Q_WS_QWS "QtCore/qglobal.h" Q_WS_QWS )
CHECK_CXX_SYMBOL_EXISTS ( Q_WS_MAC "QtCore/qglobal.h" Q_WS_MAC )
2009-11-17 22:44:33 +03:00
IF ( Q_WS_MAC )
IF ( QT_QMAKE_CHANGED )
UNSET ( QT_MAC_USE_COCOA CACHE )
ENDIF ( QT_QMAKE_CHANGED )
2011-07-28 22:15:46 +04:00
CHECK_CXX_SYMBOL_EXISTS ( QT_MAC_USE_COCOA "QtCore/qconfig.h" QT_MAC_USE_COCOA )
2009-11-17 22:44:33 +03:00
ENDIF ( Q_WS_MAC )
IF ( QT_QTCOPY_REQUIRED )
2011-07-28 22:15:46 +04:00
CHECK_CXX_SYMBOL_EXISTS ( QT_IS_QTCOPY "QtCore/qglobal.h" QT_KDE_QT_COPY )
2009-11-17 22:44:33 +03:00
IF ( NOT QT_IS_QTCOPY )
MESSAGE ( FATAL_ERROR "qt-copy is required, but hasn't been found" )
ENDIF ( NOT QT_IS_QTCOPY )
ENDIF ( QT_QTCOPY_REQUIRED )
# Restore CMAKE_REQUIRED_INCLUDES and CMAKE_REQUIRED_FLAGS variables
SET ( CMAKE_REQUIRED_INCLUDES ${ CMAKE_REQUIRED_INCLUDES_SAVE } )
SET ( CMAKE_REQUIRED_FLAGS ${ CMAKE_REQUIRED_FLAGS_SAVE } )
#
#############################################
2005-09-12 17:00:55 +04:00
########################################
#
# Setting the INCLUDE-Variables
#
########################################
2006-04-27 23:07:23 +04:00
2010-07-03 01:43:38 +04:00
SET ( QT_MODULES QtGui Qt3Support QtSvg QtScript QtTest QtUiTools
2009-12-20 17:06:42 +03:00
Q t H e l p Q t W e b K i t Q t X m l P a t t e r n s p h o n o n Q t N e t w o r k Q t M u l t i m e d i a
2010-02-18 03:12:18 +03:00
Q t N s P l u g i n Q t O p e n G L Q t S q l Q t X m l Q t D e s i g n e r Q t D B u s Q t S c r i p t T o o l s
Q t D e c l a r a t i v e )
2009-11-17 22:44:33 +03:00
IF ( Q_WS_X11 )
SET ( QT_MODULES ${ QT_MODULES } QtMotif )
ENDIF ( Q_WS_X11 )
2008-10-14 06:12:54 +04:00
IF ( QT_QMAKE_CHANGED )
FOREACH ( QT_MODULE ${ QT_MODULES } )
STRING ( TOUPPER ${ QT_MODULE } _upper_qt_module )
SET ( QT_ ${ _upper_qt_module } _INCLUDE_DIR NOTFOUND )
SET ( QT_ ${ _upper_qt_module } _LIBRARY_RELEASE NOTFOUND )
SET ( QT_ ${ _upper_qt_module } _LIBRARY_DEBUG NOTFOUND )
ENDFOREACH ( QT_MODULE )
SET ( QT_QTDESIGNERCOMPONENTS_INCLUDE_DIR NOTFOUND )
SET ( QT_QTDESIGNERCOMPONENTS_LIBRARY_RELEASE NOTFOUND )
SET ( QT_QTDESIGNERCOMPONENTS_LIBRARY_DEBUG NOTFOUND )
SET ( QT_QTASSISTANTCLIENT_INCLUDE_DIR NOTFOUND )
SET ( QT_QTASSISTANTCLIENT_LIBRARY_RELEASE NOTFOUND )
SET ( QT_QTASSISTANTCLIENT_LIBRARY_DEBUG NOTFOUND )
2008-10-20 21:31:50 +04:00
SET ( QT_QTASSISTANT_INCLUDE_DIR NOTFOUND )
SET ( QT_QTASSISTANT_LIBRARY_RELEASE NOTFOUND )
SET ( QT_QTASSISTANT_LIBRARY_DEBUG NOTFOUND )
2008-10-14 06:12:54 +04:00
SET ( QT_QTCLUCENE_LIBRARY_RELEASE NOTFOUND )
SET ( QT_QTCLUCENE_LIBRARY_DEBUG NOTFOUND )
2009-02-06 07:01:38 +03:00
SET ( QT_QAXCONTAINER_INCLUDE_DIR NOTFOUND )
SET ( QT_QAXCONTAINER_LIBRARY_RELEASE NOTFOUND )
SET ( QT_QAXCONTAINER_LIBRARY_DEBUG NOTFOUND )
SET ( QT_QAXSERVER_INCLUDE_DIR NOTFOUND )
SET ( QT_QAXSERVER_LIBRARY_RELEASE NOTFOUND )
SET ( QT_QAXSERVER_LIBRARY_DEBUG NOTFOUND )
2010-07-03 01:43:38 +04:00
IF ( Q_WS_WIN )
2009-03-19 22:44:54 +03:00
SET ( QT_QTMAIN_LIBRARY_DEBUG NOTFOUND )
SET ( QT_QTMAIN_LIBRARY_RELEASE NOTFOUND )
2010-07-03 01:43:38 +04:00
ENDIF ( Q_WS_WIN )
2008-10-14 06:12:54 +04:00
ENDIF ( QT_QMAKE_CHANGED )
FOREACH ( QT_MODULE ${ QT_MODULES } )
STRING ( TOUPPER ${ QT_MODULE } _upper_qt_module )
FIND_PATH ( QT_ ${ _upper_qt_module } _INCLUDE_DIR ${ QT_MODULE }
P A T H S
$ { Q T _ H E A D E R S _ D I R } / $ { Q T _ M O D U L E }
$ { Q T _ L I B R A R Y _ D I R } / $ { Q T _ M O D U L E } . f r a m e w o r k / H e a d e r s
2011-03-11 00:17:13 +03:00
N O _ D E F A U L T _ P A T H N O _ C M A K E _ F I N D _ R O O T _ P A T H
2008-10-14 06:12:54 +04:00
)
2010-01-14 01:34:31 +03:00
# phonon doesn't seem consistent, let's try phonondefs.h for some
# installations
IF ( ${ QT_MODULE } STREQUAL "phonon" )
FIND_PATH ( QT_ ${ _upper_qt_module } _INCLUDE_DIR phonondefs.h
P A T H S
$ { Q T _ H E A D E R S _ D I R } / $ { Q T _ M O D U L E }
$ { Q T _ L I B R A R Y _ D I R } / $ { Q T _ M O D U L E } . f r a m e w o r k / H e a d e r s
2011-03-11 00:17:13 +03:00
N O _ D E F A U L T _ P A T H N O _ C M A K E _ F I N D _ R O O T _ P A T H
2010-01-14 01:34:31 +03:00
)
ENDIF ( ${ QT_MODULE } STREQUAL "phonon" )
2008-10-14 06:12:54 +04:00
ENDFOREACH ( QT_MODULE )
2009-11-08 21:01:46 +03:00
2010-07-03 01:43:38 +04:00
IF ( Q_WS_WIN )
2009-02-06 07:01:38 +03:00
SET ( QT_MODULES ${ QT_MODULES } QAxContainer QAxServer )
# Set QT_AXCONTAINER_INCLUDE_DIR and QT_AXSERVER_INCLUDE_DIR
FIND_PATH ( QT_QAXCONTAINER_INCLUDE_DIR ActiveQt
2010-07-03 01:43:38 +04:00
P A T H S $ { Q T _ H E A D E R S _ D I R } / A c t i v e Q t
2011-03-11 00:17:13 +03:00
N O _ D E F A U L T _ P A T H N O _ C M A K E _ F I N D _ R O O T _ P A T H
2009-02-06 07:01:38 +03:00
)
FIND_PATH ( QT_QAXSERVER_INCLUDE_DIR ActiveQt
2010-07-03 01:43:38 +04:00
P A T H S $ { Q T _ H E A D E R S _ D I R } / A c t i v e Q t
2011-03-11 00:17:13 +03:00
N O _ D E F A U L T _ P A T H N O _ C M A K E _ F I N D _ R O O T _ P A T H
2009-02-06 07:01:38 +03:00
)
2010-07-03 01:43:38 +04:00
ENDIF ( Q_WS_WIN )
2009-11-08 21:01:46 +03:00
2008-10-14 06:12:54 +04:00
# Set QT_QTDESIGNERCOMPONENTS_INCLUDE_DIR
FIND_PATH ( QT_QTDESIGNERCOMPONENTS_INCLUDE_DIR QDesignerComponents
2008-05-23 23:25:26 +04:00
P A T H S
2009-01-26 18:12:37 +03:00
$ { Q T _ H E A D E R S _ D I R } / Q t D e s i g n e r
2008-10-14 06:12:54 +04:00
$ { Q T _ L I B R A R Y _ D I R } / Q t D e s i g n e r . f r a m e w o r k / H e a d e r s
2011-03-11 00:17:13 +03:00
N O _ D E F A U L T _ P A T H N O _ C M A K E _ F I N D _ R O O T _ P A T H
2006-10-04 18:33:10 +04:00
)
2008-10-20 21:31:50 +04:00
# Set QT_QTASSISTANT_INCLUDE_DIR
2009-11-10 21:57:21 +03:00
FIND_PATH ( QT_QTASSISTANT_INCLUDE_DIR QtAssistant
2008-10-20 21:31:50 +04:00
P A T H S
2009-01-26 18:12:37 +03:00
$ { Q T _ H E A D E R S _ D I R } / Q t A s s i s t a n t
2008-10-20 21:31:50 +04:00
$ { Q T _ L I B R A R Y _ D I R } / Q t A s s i s t a n t . f r a m e w o r k / H e a d e r s
2011-03-11 00:17:13 +03:00
N O _ D E F A U L T _ P A T H N O _ C M A K E _ F I N D _ R O O T _ P A T H
2008-10-20 21:31:50 +04:00
)
2008-10-14 06:12:54 +04:00
# Set QT_QTASSISTANTCLIENT_INCLUDE_DIR
FIND_PATH ( QT_QTASSISTANTCLIENT_INCLUDE_DIR QAssistantClient
P A T H S
2009-01-26 18:12:37 +03:00
$ { Q T _ H E A D E R S _ D I R } / Q t A s s i s t a n t
2008-10-14 06:12:54 +04:00
$ { Q T _ L I B R A R Y _ D I R } / Q t A s s i s t a n t . f r a m e w o r k / H e a d e r s
2011-03-11 00:17:13 +03:00
N O _ D E F A U L T _ P A T H N O _ C M A K E _ F I N D _ R O O T _ P A T H
2008-10-14 06:12:54 +04:00
)
2009-11-08 21:01:46 +03:00
########################################
#
# Setting the LIBRARY-Variables
#
########################################
2009-10-02 00:48:19 +04:00
2008-10-14 06:12:54 +04:00
# find the libraries
FOREACH ( QT_MODULE ${ QT_MODULES } )
STRING ( TOUPPER ${ QT_MODULE } _upper_qt_module )
FIND_LIBRARY ( QT_ ${ _upper_qt_module } _LIBRARY_RELEASE
2009-09-23 00:28:13 +04:00
N A M E S $ { Q T _ M O D U L E } $ { Q T _ L I B I N F I X } $ { Q T _ M O D U L E } $ { Q T _ L I B I N F I X } 4
2011-03-11 00:17:13 +03:00
P A T H S $ { Q T _ L I B R A R Y _ D I R } N O _ D E F A U L T _ P A T H N O _ C M A K E _ F I N D _ R O O T _ P A T H
2008-10-14 06:12:54 +04:00
)
FIND_LIBRARY ( QT_ ${ _upper_qt_module } _LIBRARY_DEBUG
2009-09-23 00:28:13 +04:00
N A M E S $ { Q T _ M O D U L E } $ { Q T _ L I B I N F I X } _ d e b u g $ { Q T _ M O D U L E } $ { Q T _ L I B I N F I X } d $ { Q T _ M O D U L E } $ { Q T _ L I B I N F I X } d 4
2011-03-11 00:17:13 +03:00
P A T H S $ { Q T _ L I B R A R Y _ D I R } N O _ D E F A U L T _ P A T H N O _ C M A K E _ F I N D _ R O O T _ P A T H
2008-10-14 06:12:54 +04:00
)
ENDFOREACH ( QT_MODULE )
2005-09-12 17:00:55 +04:00
2011-08-29 18:23:44 +04:00
# QtUiTools is sometimes not in the same directory as the other found libraries
# e.g. on Mac, its never a framework like the others are
IF ( QT_QTCORE_LIBRARY_RELEASE AND NOT QT_QTUITOOLS_LIBRARY_RELEASE )
2009-09-23 00:28:13 +04:00
FIND_LIBRARY ( QT_QTUITOOLS_LIBRARY_RELEASE NAMES QtUiTools ${ QT_LIBINFIX } PATHS ${ QT_LIBRARY_DIR } )
2011-08-29 18:23:44 +04:00
ENDIF ( QT_QTCORE_LIBRARY_RELEASE AND NOT QT_QTUITOOLS_LIBRARY_RELEASE )
2005-09-12 17:00:55 +04:00
2007-01-04 00:38:26 +03:00
# Set QT_QTDESIGNERCOMPONENTS_LIBRARY
2011-03-11 00:17:13 +03:00
FIND_LIBRARY ( QT_QTDESIGNERCOMPONENTS_LIBRARY_RELEASE NAMES QtDesignerComponents ${ QT_LIBINFIX } QtDesignerComponents ${ QT_LIBINFIX } 4 PATHS ${ QT_LIBRARY_DIR } NO_DEFAULT_PATH NO_CMAKE_FIND_ROOT_PATH )
FIND_LIBRARY ( QT_QTDESIGNERCOMPONENTS_LIBRARY_DEBUG NAMES QtDesignerComponents ${ QT_LIBINFIX } _debug QtDesignerComponents ${ QT_LIBINFIX } d QtDesignerComponents ${ QT_LIBINFIX } d4 PATHS ${ QT_LIBRARY_DIR } NO_DEFAULT_PATH NO_CMAKE_FIND_ROOT_PATH )
2007-01-04 00:38:26 +03:00
2006-08-01 17:12:18 +04:00
# Set QT_QTMAIN_LIBRARY
2010-07-03 01:43:38 +04:00
IF ( Q_WS_WIN )
2011-03-11 00:17:13 +03:00
FIND_LIBRARY ( QT_QTMAIN_LIBRARY_RELEASE NAMES qtmain ${ QT_LIBINFIX } PATHS ${ QT_LIBRARY_DIR } NO_DEFAULT_PATH NO_CMAKE_FIND_ROOT_PATH )
FIND_LIBRARY ( QT_QTMAIN_LIBRARY_DEBUG NAMES qtmain ${ QT_LIBINFIX } d PATHS ${ QT_LIBRARY_DIR } NO_DEFAULT_PATH NO_CMAKE_FIND_ROOT_PATH )
2010-07-03 01:43:38 +04:00
ENDIF ( Q_WS_WIN )
2008-03-13 22:29:28 +03:00
# Set QT_QTASSISTANTCLIENT_LIBRARY
2011-03-11 00:17:13 +03:00
FIND_LIBRARY ( QT_QTASSISTANTCLIENT_LIBRARY_RELEASE NAMES QtAssistantClient ${ QT_LIBINFIX } QtAssistantClient ${ QT_LIBINFIX } 4 PATHS ${ QT_LIBRARY_DIR } NO_DEFAULT_PATH NO_CMAKE_FIND_ROOT_PATH )
FIND_LIBRARY ( QT_QTASSISTANTCLIENT_LIBRARY_DEBUG NAMES QtAssistantClient ${ QT_LIBINFIX } _debug QtAssistantClient ${ QT_LIBINFIX } d QtAssistantClient ${ QT_LIBINFIX } d4 PATHS ${ QT_LIBRARY_DIR } NO_DEFAULT_PATH NO_CMAKE_FIND_ROOT_PATH )
2008-10-20 21:31:50 +04:00
# Set QT_QTASSISTANT_LIBRARY
2011-03-11 00:17:13 +03:00
FIND_LIBRARY ( QT_QTASSISTANT_LIBRARY_RELEASE NAMES QtAssistantClient ${ QT_LIBINFIX } QtAssistantClient ${ QT_LIBINFIX } 4 QtAssistant ${ QT_LIBINFIX } QtAssistant ${ QT_LIBINFIX } 4 PATHS ${ QT_LIBRARY_DIR } NO_DEFAULT_PATH NO_CMAKE_FIND_ROOT_PATH )
FIND_LIBRARY ( QT_QTASSISTANT_LIBRARY_DEBUG NAMES QtAssistantClient ${ QT_LIBINFIX } _debug QtAssistantClient ${ QT_LIBINFIX } d QtAssistantClient ${ QT_LIBINFIX } d4 QtAssistant ${ QT_LIBINFIX } _debug QtAssistant ${ QT_LIBINFIX } d4 PATHS ${ QT_LIBRARY_DIR } NO_DEFAULT_PATH NO_CMAKE_FIND_ROOT_PATH )
2008-03-13 22:29:28 +03:00
# Set QT_QTHELP_LIBRARY
2011-03-11 00:17:13 +03:00
FIND_LIBRARY ( QT_QTCLUCENE_LIBRARY_RELEASE NAMES QtCLucene ${ QT_LIBINFIX } QtCLucene ${ QT_LIBINFIX } 4 PATHS ${ QT_LIBRARY_DIR } NO_DEFAULT_PATH NO_CMAKE_FIND_ROOT_PATH )
FIND_LIBRARY ( QT_QTCLUCENE_LIBRARY_DEBUG NAMES QtCLucene ${ QT_LIBINFIX } _debug QtCLucene ${ QT_LIBINFIX } d QtCLucene ${ QT_LIBINFIX } d4 PATHS ${ QT_LIBRARY_DIR } NO_DEFAULT_PATH NO_CMAKE_FIND_ROOT_PATH )
2008-05-09 19:50:56 +04:00
IF ( Q_WS_MAC AND QT_QTCORE_LIBRARY_RELEASE AND NOT QT_QTCLUCENE_LIBRARY_RELEASE )
2009-09-23 00:28:13 +04:00
FIND_LIBRARY ( QT_QTCLUCENE_LIBRARY_RELEASE NAMES QtCLucene ${ QT_LIBINFIX } PATHS ${ QT_LIBRARY_DIR } )
2008-05-09 19:50:56 +04:00
ENDIF ( Q_WS_MAC AND QT_QTCORE_LIBRARY_RELEASE AND NOT QT_QTCLUCENE_LIBRARY_RELEASE )
2008-03-13 22:29:28 +03:00
2010-07-03 01:43:38 +04:00
2005-09-12 17:00:55 +04:00
############################################
#
# Check the existence of the libraries.
#
############################################
2010-01-19 00:23:21 +03:00
2007-01-04 01:32:02 +03:00
# Set QT_xyz_LIBRARY variable and add
# library include path to QT_INCLUDES
2011-07-25 22:30:30 +04:00
_QT4_ADJUST_LIB_VARS ( QtCore )
2010-07-03 01:43:38 +04:00
FOREACH ( QT_MODULE ${ QT_MODULES } )
_QT4_ADJUST_LIB_VARS ( ${ QT_MODULE } )
ENDFOREACH ( QT_MODULE )
2010-01-19 00:23:21 +03:00
_QT4_ADJUST_LIB_VARS ( QtAssistant )
_QT4_ADJUST_LIB_VARS ( QtAssistantClient )
_QT4_ADJUST_LIB_VARS ( QtCLucene )
_QT4_ADJUST_LIB_VARS ( QtDesignerComponents )
2009-10-02 00:41:00 +04:00
# platform dependent libraries
2010-07-03 01:43:38 +04:00
IF ( Q_WS_WIN )
2010-01-19 00:23:21 +03:00
_QT4_ADJUST_LIB_VARS ( qtmain )
_QT4_ADJUST_LIB_VARS ( QAxServer )
_QT4_ADJUST_LIB_VARS ( QAxContainer )
2010-07-03 01:43:38 +04:00
ENDIF ( Q_WS_WIN )
2009-12-17 01:16:59 +03:00
2006-09-06 16:31:50 +04:00
2005-09-12 17:00:55 +04:00
#######################################
#
2006-05-20 00:57:49 +04:00
# Check the executables of Qt
2005-09-12 17:00:55 +04:00
# ( moc, uic, rcc )
#
#######################################
2005-07-15 20:14:47 +04:00
2005-09-12 17:00:55 +04:00
2008-10-14 06:12:54 +04:00
IF ( QT_QMAKE_CHANGED )
2009-02-14 02:52:02 +03:00
SET ( QT_UIC_EXECUTABLE NOTFOUND )
SET ( QT_MOC_EXECUTABLE NOTFOUND )
2008-10-14 06:12:54 +04:00
SET ( QT_UIC3_EXECUTABLE NOTFOUND )
SET ( QT_RCC_EXECUTABLE NOTFOUND )
SET ( QT_DBUSCPP2XML_EXECUTABLE NOTFOUND )
SET ( QT_DBUSXML2CPP_EXECUTABLE NOTFOUND )
SET ( QT_LUPDATE_EXECUTABLE NOTFOUND )
SET ( QT_LRELEASE_EXECUTABLE NOTFOUND )
2009-09-23 02:44:24 +04:00
SET ( QT_QCOLLECTIONGENERATOR_EXECUTABLE NOTFOUND )
2009-11-24 01:53:50 +03:00
SET ( QT_DESIGNER_EXECUTABLE NOTFOUND )
SET ( QT_LINGUIST_EXECUTABLE NOTFOUND )
2008-10-14 06:12:54 +04:00
ENDIF ( QT_QMAKE_CHANGED )
2009-02-14 02:52:02 +03:00
FIND_PROGRAM ( QT_MOC_EXECUTABLE
N A M E S m o c - q t 4 m o c
P A T H S $ { Q T _ B I N A R Y _ D I R }
2011-03-11 00:17:13 +03:00
N O _ D E F A U L T _ P A T H N O _ C M A K E _ F I N D _ R O O T _ P A T H
2009-02-14 02:52:02 +03:00
)
FIND_PROGRAM ( QT_UIC_EXECUTABLE
N A M E S u i c - q t 4 u i c
P A T H S $ { Q T _ B I N A R Y _ D I R }
2011-03-11 00:17:13 +03:00
N O _ D E F A U L T _ P A T H N O _ C M A K E _ F I N D _ R O O T _ P A T H
2009-02-14 02:52:02 +03:00
)
2006-05-20 00:57:49 +04:00
2006-04-27 23:07:23 +04:00
FIND_PROGRAM ( QT_UIC3_EXECUTABLE
N A M E S u i c 3
P A T H S $ { Q T _ B I N A R Y _ D I R }
2011-03-11 00:17:13 +03:00
N O _ D E F A U L T _ P A T H N O _ C M A K E _ F I N D _ R O O T _ P A T H
2006-04-27 23:07:23 +04:00
)
2006-05-20 00:57:49 +04:00
FIND_PROGRAM ( QT_RCC_EXECUTABLE
2005-09-12 17:00:55 +04:00
N A M E S r c c
2006-04-27 23:07:23 +04:00
P A T H S $ { Q T _ B I N A R Y _ D I R }
2011-03-11 00:17:13 +03:00
N O _ D E F A U L T _ P A T H N O _ C M A K E _ F I N D _ R O O T _ P A T H
2005-09-12 17:00:55 +04:00
)
2005-07-15 20:14:47 +04:00
2007-01-04 00:01:59 +03:00
FIND_PROGRAM ( QT_DBUSCPP2XML_EXECUTABLE
N A M E S q d b u s c p p 2 x m l
P A T H S $ { Q T _ B I N A R Y _ D I R }
2011-03-11 00:17:13 +03:00
N O _ D E F A U L T _ P A T H N O _ C M A K E _ F I N D _ R O O T _ P A T H
2007-01-04 00:01:59 +03:00
)
FIND_PROGRAM ( QT_DBUSXML2CPP_EXECUTABLE
N A M E S q d b u s x m l 2 c p p
P A T H S $ { Q T _ B I N A R Y _ D I R }
2011-03-11 00:17:13 +03:00
N O _ D E F A U L T _ P A T H N O _ C M A K E _ F I N D _ R O O T _ P A T H
2007-01-04 00:01:59 +03:00
)
2008-01-22 18:11:29 +03:00
FIND_PROGRAM ( QT_LUPDATE_EXECUTABLE
2009-02-26 00:29:29 +03:00
N A M E S l u p d a t e - q t 4 l u p d a t e
2008-01-22 18:11:29 +03:00
P A T H S $ { Q T _ B I N A R Y _ D I R }
2011-03-11 00:17:13 +03:00
N O _ D E F A U L T _ P A T H N O _ C M A K E _ F I N D _ R O O T _ P A T H
2008-01-22 18:11:29 +03:00
)
FIND_PROGRAM ( QT_LRELEASE_EXECUTABLE
2009-02-26 00:29:29 +03:00
N A M E S l r e l e a s e - q t 4 l r e l e a s e
2008-01-22 18:11:29 +03:00
P A T H S $ { Q T _ B I N A R Y _ D I R }
2011-03-11 00:17:13 +03:00
N O _ D E F A U L T _ P A T H N O _ C M A K E _ F I N D _ R O O T _ P A T H
2008-01-22 18:11:29 +03:00
)
2009-09-23 02:44:24 +04:00
FIND_PROGRAM ( QT_QCOLLECTIONGENERATOR_EXECUTABLE
N A M E S q c o l l e c t i o n g e n e r a t o r - q t 4 q c o l l e c t i o n g e n e r a t o r
P A T H S $ { Q T _ B I N A R Y _ D I R }
2011-03-11 00:17:13 +03:00
N O _ D E F A U L T _ P A T H N O _ C M A K E _ F I N D _ R O O T _ P A T H
2009-09-23 02:44:24 +04:00
)
2009-11-24 01:53:50 +03:00
FIND_PROGRAM ( QT_DESIGNER_EXECUTABLE
N A M E S d e s i g n e r - q t 4 d e s i g n e r
P A T H S $ { Q T _ B I N A R Y _ D I R }
2011-03-11 00:17:13 +03:00
N O _ D E F A U L T _ P A T H N O _ C M A K E _ F I N D _ R O O T _ P A T H
2009-11-24 01:53:50 +03:00
)
FIND_PROGRAM ( QT_LINGUIST_EXECUTABLE
N A M E S l i n g u i s t - q t 4 l i n g u i s t
P A T H S $ { Q T _ B I N A R Y _ D I R }
2011-03-11 00:17:13 +03:00
N O _ D E F A U L T _ P A T H N O _ C M A K E _ F I N D _ R O O T _ P A T H
2009-11-24 01:53:50 +03:00
)
2006-04-27 23:07:23 +04:00
IF ( QT_MOC_EXECUTABLE )
2007-01-04 00:01:59 +03:00
SET ( QT_WRAP_CPP "YES" )
2006-04-27 23:07:23 +04:00
ENDIF ( QT_MOC_EXECUTABLE )
IF ( QT_UIC_EXECUTABLE )
2007-01-04 00:01:59 +03:00
SET ( QT_WRAP_UI "YES" )
2006-04-27 23:07:23 +04:00
ENDIF ( QT_UIC_EXECUTABLE )
2008-01-30 01:01:00 +03:00
MARK_AS_ADVANCED ( QT_UIC_EXECUTABLE QT_UIC3_EXECUTABLE QT_MOC_EXECUTABLE
Q T _ R C C _ E X E C U T A B L E Q T _ D B U S X M L 2 C P P _ E X E C U T A B L E Q T _ D B U S C P P 2 X M L _ E X E C U T A B L E
2009-11-24 01:53:50 +03:00
Q T _ L U P D A T E _ E X E C U T A B L E Q T _ L R E L E A S E _ E X E C U T A B L E Q T _ Q C O L L E C T I O N G E N E R A T O R _ E X E C U T A B L E
Q T _ D E S I G N E R _ E X E C U T A B L E Q T _ L I N G U I S T _ E X E C U T A B L E )
2005-09-12 17:00:55 +04:00
2009-11-15 21:02:19 +03:00
# get the directory of the current file, used later on in the file
GET_FILENAME_COMPONENT ( _qt4_current_dir "${CMAKE_CURRENT_LIST_FILE}" PATH )
2008-05-21 21:36:37 +04:00
2006-09-06 16:31:50 +04:00
###############################################
#
# configuration/system dependent settings
#
###############################################
2009-11-15 21:02:19 +03:00
INCLUDE ( "${_qt4_current_dir}/Qt4ConfigDependentSettings.cmake" )
2008-03-17 21:53:02 +03:00
2005-09-12 17:00:55 +04:00
2011-01-01 21:45:05 +03:00
#######################################
#
# Check the plugins of Qt
#
#######################################
SET ( QT_PLUGIN_TYPES accessible bearer codecs decorations designer gfxdrivers graphicssystems iconengines imageformats inputmethods mousedrivers phonon_backend script sqldrivers )
SET ( QT_ACCESSIBLE_PLUGINS qtaccessiblecompatwidgets qtaccessiblewidgets )
SET ( QT_BEARER_PLUGINS qcorewlanbearer qgenericbearer )
SET ( QT_CODECS_PLUGINS qcncodecs qjpcodecs qkrcodecs qtwcodecs )
SET ( QT_DECORATIONS_PLUGINS qdecorationdefault qdecorationwindows )
SET ( QT_DESIGNER_PLUGINS arthurplugin containerextension customwidgetplugin phononwidgets qdeclarativeview qt3supportwidgets qwebview taskmenuextension worldtimeclockplugin )
SET ( QT_GRAPHICSDRIVERS_PLUGINS qgfxtransformed qgfxvnc qscreenvfb )
SET ( QT_GRAPHICSSYSTEMS_PLUGINS qglgraphicssystem qtracegraphicssystem )
SET ( QT_ICONENGINES_PLUGINS qsvgicon )
SET ( QT_IMAGEFORMATS_PLUGINS qgif qjpeg qmng qico qsvg qtiff )
SET ( QT_INPUTMETHODS_PLUGINS qimsw_multi )
SET ( QT_MOUSEDRIVERS_PLUGINS qwstslibmousehandler )
SET ( QT_PHONON_BACKEND_PLUGINS phonon_qt7 )
SET ( QT_SCRIPT_PLUGINS qtscriptdbus )
SET ( QT_SQLDRIVERS_PLUGINS qsqldb2 qsqlibase qsqlite qsqlite2 qsqlmysql qsqloci qsqlodbc qsqlpsql qsqltds )
IF ( QT_QMAKE_CHANGED )
FOREACH ( QT_PLUGIN_TYPE ${ QT_PLUGIN_TYPES } )
STRING ( TOUPPER ${ QT_PLUGIN_TYPE } _upper_qt_plugin_type )
SET ( QT_ ${ _upper_qt_plugin_type } _PLUGINS_DIR ${ QT_PLUGINS_DIR } / ${ QT_PLUGIN_TYPE } )
FOREACH ( QT_PLUGIN ${ QT_${_upper_qt_plugin_type } _PLUGINS} )
STRING ( TOUPPER ${ QT_PLUGIN } _upper_qt_plugin )
UNSET ( QT_ ${ _upper_qt_plugin } _LIBRARY_RELEASE CACHE )
UNSET ( QT_ ${ _upper_qt_plugin } _LIBRARY_DEBUG CACHE )
UNSET ( QT_ ${ _upper_qt_plugin } _LIBRARY CACHE )
UNSET ( QT_ ${ _upper_qt_plugin } _PLUGIN_RELEASE CACHE )
UNSET ( QT_ ${ _upper_qt_plugin } _PLUGIN_DEBUG CACHE )
UNSET ( QT_ ${ _upper_qt_plugin } _PLUGIN CACHE )
ENDFOREACH ( QT_PLUGIN )
ENDFOREACH ( QT_PLUGIN_TYPE )
ENDIF ( QT_QMAKE_CHANGED )
# find_library works better than find_file but we need to set prefixes to only match plugins
FOREACH ( QT_PLUGIN_TYPE ${ QT_PLUGIN_TYPES } )
STRING ( TOUPPER ${ QT_PLUGIN_TYPE } _upper_qt_plugin_type )
SET ( QT_ ${ _upper_qt_plugin_type } _PLUGINS_DIR ${ QT_PLUGINS_DIR } / ${ QT_PLUGIN_TYPE } )
FOREACH ( QT_PLUGIN ${ QT_${_upper_qt_plugin_type } _PLUGINS} )
STRING ( TOUPPER ${ QT_PLUGIN } _upper_qt_plugin )
IF ( QT_IS_STATIC )
FIND_LIBRARY ( QT_ ${ _upper_qt_plugin } _LIBRARY_RELEASE
N A M E S $ { Q T _ P L U G I N } $ { Q T _ L I B I N F I X } $ { Q T _ P L U G I N } $ { Q T _ L I B I N F I X } 4
2011-03-11 00:17:13 +03:00
P A T H S $ { Q T _ $ { _ u p p e r _ q t _ p l u g i n _ t y p e } _ P L U G I N S _ D I R } N O _ D E F A U L T _ P A T H N O _ C M A K E _ F I N D _ R O O T _ P A T H
2011-01-01 21:45:05 +03:00
)
FIND_LIBRARY ( QT_ ${ _upper_qt_plugin } _LIBRARY_DEBUG
N A M E S $ { Q T _ P L U G I N } $ { Q T _ L I B I N F I X } _ d e b u g $ { Q T _ P L U G I N } $ { Q T _ L I B I N F I X } d $ { Q T _ P L U G I N } $ { Q T _ L I B I N F I X } d 4
2011-03-11 00:17:13 +03:00
P A T H S $ { Q T _ $ { _ u p p e r _ q t _ p l u g i n _ t y p e } _ P L U G I N S _ D I R } N O _ D E F A U L T _ P A T H N O _ C M A K E _ F I N D _ R O O T _ P A T H
2011-01-01 21:45:05 +03:00
)
_QT4_ADJUST_LIB_VARS ( ${ QT_PLUGIN } )
ELSE ( QT_IS_STATIC )
# find_library works easier/better than find_file but we need to set suffixes to only match plugins
SET ( CMAKE_FIND_LIBRARY_SUFFIXES_DEFAULT ${ CMAKE_FIND_LIBRARY_SUFFIXES } )
SET ( CMAKE_FIND_LIBRARY_SUFFIXES ${ CMAKE_SHARED_MODULE_SUFFIX } ${ CMAKE_SHARED_LIBRARY_SUFFIX } )
FIND_LIBRARY ( QT_ ${ _upper_qt_plugin } _PLUGIN_RELEASE
N A M E S $ { Q T _ P L U G I N } $ { Q T _ L I B I N F I X } $ { Q T _ P L U G I N } $ { Q T _ L I B I N F I X } 4
2011-03-11 00:17:13 +03:00
P A T H S $ { Q T _ $ { _ u p p e r _ q t _ p l u g i n _ t y p e } _ P L U G I N S _ D I R } N O _ D E F A U L T _ P A T H N O _ C M A K E _ F I N D _ R O O T _ P A T H
2011-01-01 21:45:05 +03:00
)
FIND_LIBRARY ( QT_ ${ _upper_qt_plugin } _PLUGIN_DEBUG
N A M E S $ { Q T _ P L U G I N } $ { Q T _ L I B I N F I X } _ d e b u g $ { Q T _ P L U G I N } $ { Q T _ L I B I N F I X } d $ { Q T _ P L U G I N } $ { Q T _ L I B I N F I X } d 4
2011-03-11 00:17:13 +03:00
P A T H S $ { Q T _ $ { _ u p p e r _ q t _ p l u g i n _ t y p e } _ P L U G I N S _ D I R } N O _ D E F A U L T _ P A T H N O _ C M A K E _ F I N D _ R O O T _ P A T H
2011-01-01 21:45:05 +03:00
)
MARK_AS_ADVANCED ( QT_ ${ _upper_qt_plugin } _PLUGIN_RELEASE QT_ ${ _upper_qt_plugin } _PLUGIN_DEBUG )
SET ( CMAKE_FIND_LIBRARY_SUFFIXES ${ CMAKE_FIND_LIBRARY_SUFFIXES_DEFAULT } )
ENDIF ( QT_IS_STATIC )
ENDFOREACH ( QT_PLUGIN )
ENDFOREACH ( QT_PLUGIN_TYPE )
######################################
#
# Macros for building Qt files
#
######################################
INCLUDE ( "${_qt4_current_dir}/Qt4Macros.cmake" )
2011-02-24 03:13:49 +03:00
# set version variables
STRING ( REGEX REPLACE "^([0-9]+)\\.[0-9]+\\.[0-9]+.*" "\\1" QT_VERSION_MAJOR "${QTVERSION}" )
STRING ( REGEX REPLACE "^[0-9]+\\.([0-9])+\\.[0-9]+.*" "\\1" QT_VERSION_MINOR "${QTVERSION}" )
STRING ( REGEX REPLACE "^[0-9]+\\.[0-9]+\\.([0-9]+).*" "\\1" QT_VERSION_PATCH "${QTVERSION}" )
2011-01-15 07:26:19 +03:00
ENDIF ( QT_QMAKE_EXECUTABLE AND QTVERSION )
2011-01-01 21:45:05 +03:00
2011-01-15 07:26:19 +03:00
#support old QT_MIN_VERSION if set, but not if version is supplied by find_package()
IF ( NOT Qt4_FIND_VERSION AND QT_MIN_VERSION )
SET ( Qt4_FIND_VERSION ${ QT_MIN_VERSION } )
ENDIF ( NOT Qt4_FIND_VERSION AND QT_MIN_VERSION )
IF ( Qt4_FIND_COMPONENTS )
# if components specified in find_package(), make sure each of those pieces were found
SET ( _QT4_FOUND_REQUIRED_VARS QT_QMAKE_EXECUTABLE QT_MOC_EXECUTABLE QT_RCC_EXECUTABLE QT_INCLUDE_DIR QT_LIBRARY_DIR )
FOREACH ( component ${ Qt4_FIND_COMPONENTS } )
STRING ( TOUPPER ${ component } _COMPONENT )
2011-02-04 02:37:04 +03:00
if ( ${ _COMPONENT } STREQUAL "QTMAIN" )
IF ( Q_WS_WIN )
SET ( _QT4_FOUND_REQUIRED_VARS ${ _QT4_FOUND_REQUIRED_VARS } QT_ ${ _COMPONENT } _LIBRARY )
ENDIF ( Q_WS_WIN )
else ( ${ _COMPONENT } STREQUAL "QTMAIN" )
SET ( _QT4_FOUND_REQUIRED_VARS ${ _QT4_FOUND_REQUIRED_VARS } QT_ ${ _COMPONENT } _INCLUDE_DIR QT_ ${ _COMPONENT } _LIBRARY )
endif ( ${ _COMPONENT } STREQUAL "QTMAIN" )
2011-01-15 07:26:19 +03:00
ENDFOREACH ( component )
if ( Qt4_FIND_COMPONENTS MATCHES QtGui )
SET ( _QT4_FOUND_REQUIRED_VARS ${ _QT4_FOUND_REQUIRED_VARS } QT_UIC_EXECUTABLE )
endif ( Qt4_FIND_COMPONENTS MATCHES QtGui )
ELSE ( Qt4_FIND_COMPONENTS )
# if no components specified, we'll make a default set of required variables to say Qt is found
SET ( _QT4_FOUND_REQUIRED_VARS QT_QMAKE_EXECUTABLE QT_MOC_EXECUTABLE QT_RCC_EXECUTABLE QT_UIC_EXECUTABLE QT_INCLUDE_DIR
Q T _ L I B R A R Y _ D I R Q T _ Q T C O R E _ L I B R A R Y )
ENDIF ( Qt4_FIND_COMPONENTS )
FIND_PACKAGE_HANDLE_STANDARD_ARGS ( Qt4
R E Q U I R E D _ V A R S $ { _ Q T 4 _ F O U N D _ R E Q U I R E D _ V A R S }
V E R S I O N _ V A R Q T V E R S I O N
)
#######################################
#
# compatibility settings
#
#######################################
# Backwards compatibility for CMake1.4 and 1.2
SET ( QT_MOC_EXE ${ QT_MOC_EXECUTABLE } )
SET ( QT_UIC_EXE ${ QT_UIC_EXECUTABLE } )
SET ( QT_QT_LIBRARY "" )
SET ( QT_FOUND ${ QT4_FOUND } )
2006-04-27 23:07:23 +04:00