FindQt4.cmake 50 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161
  1. # - Find QT 4
  2. # This module can be used to find Qt4.
  3. # The most important issue is that the Qt4 qmake is available via the system path.
  4. # This qmake is then used to detect basically everything else.
  5. # This module defines a number of key variables and macros.
  6. # The variable QT_USE_FILE is set which is the path to a CMake file that can be included
  7. # to compile Qt 4 applications and libraries. It sets up the compilation
  8. # environment for include directories, preprocessor defines and populates a
  9. # QT_LIBRARIES variable.
  10. #
  11. # Typical usage could be something like:
  12. # find_package(Qt4 4.4.3 COMPONENTS QtCore QtGui QtXml REQUIRED )
  13. # include(${QT_USE_FILE})
  14. # add_executable(myexe main.cpp)
  15. # target_link_libraries(myexe ${QT_LIBRARIES})
  16. #
  17. # The minimum required version can be specified using the standard find_package()-syntax
  18. # (see example above).
  19. # For compatibility with older versions of FindQt4.cmake it is also possible to
  20. # set the variable QT_MIN_VERSION to the minimum required version of Qt4 before the
  21. # find_package(Qt4) command.
  22. # If both are used, the version used in the find_package() command overrides the
  23. # one from QT_MIN_VERSION.
  24. #
  25. # When using the components argument, QT_USE_QT* variables are automatically set
  26. # for the QT_USE_FILE to pick up. If one wishes to manually set them, the
  27. # available ones to set include:
  28. # QT_DONT_USE_QTCORE
  29. # QT_DONT_USE_QTGUI
  30. # QT_USE_QT3SUPPORT
  31. # QT_USE_QTASSISTANT
  32. # QT_USE_QAXCONTAINER
  33. # QT_USE_QAXSERVER
  34. # QT_USE_QTDESIGNER
  35. # QT_USE_QTMOTIF
  36. # QT_USE_QTMAIN
  37. # QT_USE_QTMULTIMEDIA
  38. # QT_USE_QTNETWORK
  39. # QT_USE_QTNSPLUGIN
  40. # QT_USE_QTOPENGL
  41. # QT_USE_QTSQL
  42. # QT_USE_QTXML
  43. # QT_USE_QTSVG
  44. # QT_USE_QTTEST
  45. # QT_USE_QTUITOOLS
  46. # QT_USE_QTDBUS
  47. # QT_USE_QTSCRIPT
  48. # QT_USE_QTASSISTANTCLIENT
  49. # QT_USE_QTHELP
  50. # QT_USE_QTWEBKIT
  51. # QT_USE_QTXMLPATTERNS
  52. # QT_USE_PHONON
  53. # QT_USE_QTSCRIPTTOOLS
  54. # QT_USE_QTDECLARATIVE
  55. #
  56. # QT_USE_IMPORTED_TARGETS
  57. # If this variable is set to TRUE, FindQt4.cmake will create imported
  58. # library targets for the various Qt libraries and set the
  59. # library variables like QT_QTCORE_LIBRARY to point at these imported
  60. # targets instead of the library file on disk. This provides much better
  61. # handling of the release and debug versions of the Qt libraries and is
  62. # also always backwards compatible, except for the case that dependencies
  63. # of libraries are exported, these will then also list the names of the
  64. # imported targets as dependency and not the file location on disk. This
  65. # is much more flexible, but requires that FindQt4.cmake is executed before
  66. # such an exported dependency file is processed.
  67. #
  68. # There are also some files that need processing by some Qt tools such as moc
  69. # and uic. Listed below are macros that may be used to process those files.
  70. #
  71. # macro QT4_WRAP_CPP(outfiles inputfile ... OPTIONS ...)
  72. # create moc code from a list of files containing Qt class with
  73. # the Q_OBJECT declaration. Per-direcotry preprocessor definitions
  74. # are also added. Options may be given to moc, such as those found
  75. # when executing "moc -help".
  76. #
  77. # macro QT4_WRAP_UI(outfiles inputfile ... OPTIONS ...)
  78. # create code from a list of Qt designer ui files.
  79. # Options may be given to uic, such as those found
  80. # when executing "uic -help"
  81. #
  82. # macro QT4_ADD_RESOURCES(outfiles inputfile ... OPTIONS ...)
  83. # create code from a list of Qt resource files.
  84. # Options may be given to rcc, such as those found
  85. # when executing "rcc -help"
  86. #
  87. # macro QT4_GENERATE_MOC(inputfile outputfile )
  88. # creates a rule to run moc on infile and create outfile.
  89. # Use this if for some reason QT4_WRAP_CPP() isn't appropriate, e.g.
  90. # because you need a custom filename for the moc file or something similar.
  91. #
  92. # macro QT4_AUTOMOC(sourcefile1 sourcefile2 ... )
  93. # This macro is still experimental.
  94. # It can be used to have moc automatically handled.
  95. # So if you have the files foo.h and foo.cpp, and in foo.h a
  96. # a class uses the Q_OBJECT macro, moc has to run on it. If you don't
  97. # want to use QT4_WRAP_CPP() (which is reliable and mature), you can insert
  98. # #include "foo.moc"
  99. # in foo.cpp and then give foo.cpp as argument to QT4_AUTOMOC(). This will the
  100. # scan all listed files at cmake-time for such included moc files and if it finds
  101. # them cause a rule to be generated to run moc at build time on the
  102. # accompanying header file foo.h.
  103. # If a source file has the SKIP_AUTOMOC property set it will be ignored by this macro.
  104. #
  105. # macro QT4_ADD_DBUS_INTERFACE(outfiles interface basename)
  106. # create a the interface header and implementation files with the
  107. # given basename from the given interface xml file and add it to
  108. # the list of sources
  109. #
  110. # macro QT4_ADD_DBUS_INTERFACES(outfiles inputfile ... )
  111. # create the interface header and implementation files
  112. # for all listed interface xml files
  113. # the name will be automatically determined from the name of the xml file
  114. #
  115. # macro QT4_ADD_DBUS_ADAPTOR(outfiles xmlfile parentheader parentclassname [basename] [classname])
  116. # create a dbus adaptor (header and implementation file) from the xml file
  117. # describing the interface, and add it to the list of sources. The adaptor
  118. # forwards the calls to a parent class, defined in parentheader and named
  119. # parentclassname. The name of the generated files will be
  120. # <basename>adaptor.{cpp,h} where basename defaults to the basename of the xml file.
  121. # If <classname> is provided, then it will be used as the classname of the
  122. # adaptor itself.
  123. #
  124. # macro QT4_GENERATE_DBUS_INTERFACE( header [interfacename] OPTIONS ...)
  125. # generate the xml interface file from the given header.
  126. # If the optional argument interfacename is omitted, the name of the
  127. # interface file is constructed from the basename of the header with
  128. # the suffix .xml appended.
  129. # Options may be given to qdbuscpp2xml, such as those found when executing "qdbuscpp2xml --help"
  130. #
  131. # macro QT4_CREATE_TRANSLATION( qm_files directories ... sources ...
  132. # ts_files ... OPTIONS ...)
  133. # out: qm_files
  134. # in: directories sources ts_files
  135. # options: flags to pass to lupdate, such as -extensions to specify
  136. # extensions for a directory scan.
  137. # generates commands to create .ts (vie lupdate) and .qm
  138. # (via lrelease) - files from directories and/or sources. The ts files are
  139. # created and/or updated in the source tree (unless given with full paths).
  140. # The qm files are generated in the build tree.
  141. # Updating the translations can be done by adding the qm_files
  142. # to the source list of your library/executable, so they are
  143. # always updated, or by adding a custom target to control when
  144. # they get updated/generated.
  145. #
  146. # macro QT4_ADD_TRANSLATION( qm_files ts_files ... )
  147. # out: qm_files
  148. # in: ts_files
  149. # generates commands to create .qm from .ts - files. The generated
  150. # filenames can be found in qm_files. The ts_files
  151. # must exists and are not updated in any way.
  152. #
  153. #
  154. # Below is a detailed list of variables that FindQt4.cmake sets.
  155. # QT_FOUND If false, don't try to use Qt.
  156. # QT4_FOUND If false, don't try to use Qt 4.
  157. #
  158. # QT_VERSION_MAJOR The major version of Qt found.
  159. # QT_VERSION_MINOR The minor version of Qt found.
  160. # QT_VERSION_PATCH The patch version of Qt found.
  161. #
  162. # QT_EDITION Set to the edition of Qt (i.e. DesktopLight)
  163. # QT_EDITION_DESKTOPLIGHT True if QT_EDITION == DesktopLight
  164. # QT_QTCORE_FOUND True if QtCore was found.
  165. # QT_QTGUI_FOUND True if QtGui was found.
  166. # QT_QT3SUPPORT_FOUND True if Qt3Support was found.
  167. # QT_QTASSISTANT_FOUND True if QtAssistant was found.
  168. # QT_QTASSISTANTCLIENT_FOUND True if QtAssistantClient was found.
  169. # QT_QAXCONTAINER_FOUND True if QAxContainer was found (Windows only).
  170. # QT_QAXSERVER_FOUND True if QAxServer was found (Windows only).
  171. # QT_QTDBUS_FOUND True if QtDBus was found.
  172. # QT_QTDESIGNER_FOUND True if QtDesigner was found.
  173. # QT_QTDESIGNERCOMPONENTS True if QtDesignerComponents was found.
  174. # QT_QTHELP_FOUND True if QtHelp was found.
  175. # QT_QTMOTIF_FOUND True if QtMotif was found.
  176. # QT_QTMULTIMEDIA_FOUND True if QtMultimedia was found (since Qt 4.6.0).
  177. # QT_QTNETWORK_FOUND True if QtNetwork was found.
  178. # QT_QTNSPLUGIN_FOUND True if QtNsPlugin was found.
  179. # QT_QTOPENGL_FOUND True if QtOpenGL was found.
  180. # QT_QTSQL_FOUND True if QtSql was found.
  181. # QT_QTSVG_FOUND True if QtSvg was found.
  182. # QT_QTSCRIPT_FOUND True if QtScript was found.
  183. # QT_QTSCRIPTTOOLS_FOUND True if QtScriptTools was found.
  184. # QT_QTTEST_FOUND True if QtTest was found.
  185. # QT_QTUITOOLS_FOUND True if QtUiTools was found.
  186. # QT_QTWEBKIT_FOUND True if QtWebKit was found.
  187. # QT_QTXML_FOUND True if QtXml was found.
  188. # QT_QTXMLPATTERNS_FOUND True if QtXmlPatterns was found.
  189. # QT_PHONON_FOUND True if phonon was found.
  190. # QT_QTDECLARATIVE_FOUND True if QtDeclarative was found.
  191. #
  192. # QT_MAC_USE_COCOA For Mac OS X, its whether Cocoa or Carbon is used.
  193. # In general, this should not be used, but its useful
  194. # when having platform specific code.
  195. #
  196. # QT_DEFINITIONS Definitions to use when compiling code that uses Qt.
  197. # You do not need to use this if you include QT_USE_FILE.
  198. # The QT_USE_FILE will also define QT_DEBUG and QT_NO_DEBUG
  199. # to fit your current build type. Those are not contained
  200. # in QT_DEFINITIONS.
  201. #
  202. # QT_INCLUDES List of paths to all include directories of
  203. # Qt4 QT_INCLUDE_DIR and QT_QTCORE_INCLUDE_DIR are
  204. # always in this variable even if NOTFOUND,
  205. # all other INCLUDE_DIRS are
  206. # only added if they are found.
  207. # You do not need to use this if you include QT_USE_FILE.
  208. #
  209. #
  210. # Include directories for the Qt modules are listed here.
  211. # You do not need to use these variables if you include QT_USE_FILE.
  212. #
  213. # QT_INCLUDE_DIR Path to "include" of Qt4
  214. # QT_QT3SUPPORT_INCLUDE_DIR Path to "include/Qt3Support"
  215. # QT_QTASSISTANT_INCLUDE_DIR Path to "include/QtAssistant"
  216. # QT_QTASSISTANTCLIENT_INCLUDE_DIR Path to "include/QtAssistant"
  217. # QT_QAXCONTAINER_INCLUDE_DIR Path to "include/ActiveQt" (Windows only)
  218. # QT_QAXSERVER_INCLUDE_DIR Path to "include/ActiveQt" (Windows only)
  219. # QT_QTCORE_INCLUDE_DIR Path to "include/QtCore"
  220. # QT_QTDBUS_INCLUDE_DIR Path to "include/QtDBus"
  221. # QT_QTDESIGNER_INCLUDE_DIR Path to "include/QtDesigner"
  222. # QT_QTDESIGNERCOMPONENTS_INCLUDE_DIR Path to "include/QtDesigner"
  223. # QT_QTGUI_INCLUDE_DIR Path to "include/QtGui"
  224. # QT_QTHELP_INCLUDE_DIR Path to "include/QtHelp"
  225. # QT_QTMOTIF_INCLUDE_DIR Path to "include/QtMotif"
  226. # QT_QTMULTIMEDIA_INCLUDE_DIR Path to "include/QtMultimedia"
  227. # QT_QTNETWORK_INCLUDE_DIR Path to "include/QtNetwork"
  228. # QT_QTNSPLUGIN_INCLUDE_DIR Path to "include/QtNsPlugin"
  229. # QT_QTOPENGL_INCLUDE_DIR Path to "include/QtOpenGL"
  230. # QT_QTSCRIPT_INCLUDE_DIR Path to "include/QtScript"
  231. # QT_QTSQL_INCLUDE_DIR Path to "include/QtSql"
  232. # QT_QTSVG_INCLUDE_DIR Path to "include/QtSvg"
  233. # QT_QTTEST_INCLUDE_DIR Path to "include/QtTest"
  234. # QT_QTWEBKIT_INCLUDE_DIR Path to "include/QtWebKit"
  235. # QT_QTXML_INCLUDE_DIR Path to "include/QtXml"
  236. # QT_QTXMLPATTERNS_INCLUDE_DIR Path to "include/QtXmlPatterns"
  237. # QT_PHONON_INCLUDE_DIR Path to "include/phonon"
  238. # QT_QTSCRIPTTOOLS_INCLUDE_DIR Path to "include/QtScriptTools"
  239. # QT_QTDECLARATIVE_INCLUDE_DIR Path to "include/QtDeclarative"
  240. #
  241. # QT_BINARY_DIR Path to "bin" of Qt4
  242. # QT_LIBRARY_DIR Path to "lib" of Qt4
  243. # QT_PLUGINS_DIR Path to "plugins" for Qt4
  244. # QT_TRANSLATIONS_DIR Path to "translations" of Qt4
  245. # QT_DOC_DIR Path to "doc" of Qt4
  246. # QT_MKSPECS_DIR Path to "mkspecs" of Qt4
  247. #
  248. #
  249. # The Qt toolkit may contain both debug and release libraries.
  250. # In that case, the following library variables will contain both.
  251. # You do not need to use these variables if you include QT_USE_FILE,
  252. # and use QT_LIBRARIES.
  253. #
  254. # QT_QT3SUPPORT_LIBRARY The Qt3Support library
  255. # QT_QTASSISTANT_LIBRARY The QtAssistant library
  256. # QT_QTASSISTANTCLIENT_LIBRARY The QtAssistantClient library
  257. # QT_QAXCONTAINER_LIBRARY The QAxContainer library (Windows only)
  258. # QT_QAXSERVER_LIBRARY The QAxServer library (Windows only)
  259. # QT_QTCORE_LIBRARY The QtCore library
  260. # QT_QTDBUS_LIBRARY The QtDBus library
  261. # QT_QTDESIGNER_LIBRARY The QtDesigner library
  262. # QT_QTDESIGNERCOMPONENTS_LIBRARY The QtDesignerComponents library
  263. # QT_QTGUI_LIBRARY The QtGui library
  264. # QT_QTHELP_LIBRARY The QtHelp library
  265. # QT_QTMOTIF_LIBRARY The QtMotif library
  266. # QT_QTMULTIMEDIA_LIBRARY The QtMultimedia library
  267. # QT_QTNETWORK_LIBRARY The QtNetwork library
  268. # QT_QTNSPLUGIN_LIBRARY The QtNsPLugin library
  269. # QT_QTOPENGL_LIBRARY The QtOpenGL library
  270. # QT_QTSCRIPT_LIBRARY The QtScript library
  271. # QT_QTSQL_LIBRARY The QtSql library
  272. # QT_QTSVG_LIBRARY The QtSvg library
  273. # QT_QTTEST_LIBRARY The QtTest library
  274. # QT_QTUITOOLS_LIBRARY The QtUiTools library
  275. # QT_QTWEBKIT_LIBRARY The QtWebKit library
  276. # QT_QTXML_LIBRARY The QtXml library
  277. # QT_QTXMLPATTERNS_LIBRARY The QtXmlPatterns library
  278. # QT_QTMAIN_LIBRARY The qtmain library for Windows
  279. # QT_PHONON_LIBRARY The phonon library
  280. # QT_QTSCRIPTTOOLS_LIBRARY The QtScriptTools library
  281. #
  282. # The QtDeclarative library: QT_QTDECLARATIVE_LIBRARY
  283. #
  284. # also defined, but NOT for general use are
  285. # QT_MOC_EXECUTABLE Where to find the moc tool.
  286. # QT_UIC_EXECUTABLE Where to find the uic tool.
  287. # QT_UIC3_EXECUTABLE Where to find the uic3 tool.
  288. # QT_RCC_EXECUTABLE Where to find the rcc tool
  289. # QT_DBUSCPP2XML_EXECUTABLE Where to find the qdbuscpp2xml tool.
  290. # QT_DBUSXML2CPP_EXECUTABLE Where to find the qdbusxml2cpp tool.
  291. # QT_LUPDATE_EXECUTABLE Where to find the lupdate tool.
  292. # QT_LRELEASE_EXECUTABLE Where to find the lrelease tool.
  293. # QT_QCOLLECTIONGENERATOR_EXECUTABLE Where to find the qcollectiongenerator tool.
  294. # QT_DESIGNER_EXECUTABLE Where to find the Qt designer tool.
  295. # QT_LINGUIST_EXECUTABLE Where to find the Qt linguist tool.
  296. #
  297. #
  298. # These are around for backwards compatibility
  299. # they will be set
  300. # QT_WRAP_CPP Set true if QT_MOC_EXECUTABLE is found
  301. # QT_WRAP_UI Set true if QT_UIC_EXECUTABLE is found
  302. #
  303. # These variables do _NOT_ have any effect anymore (compared to FindQt.cmake)
  304. # QT_MT_REQUIRED Qt4 is now always multithreaded
  305. #
  306. # These variables are set to "" Because Qt structure changed
  307. # (They make no sense in Qt4)
  308. # QT_QT_LIBRARY Qt-Library is now split
  309. #=============================================================================
  310. # Copyright 2005-2009 Kitware, Inc.
  311. #
  312. # Distributed under the OSI-approved BSD License (the "License");
  313. # see accompanying file Copyright.txt for details.
  314. #
  315. # This software is distributed WITHOUT ANY WARRANTY; without even the
  316. # implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
  317. # See the License for more information.
  318. #=============================================================================
  319. # (To distributed this file outside of CMake, substitute the full
  320. # License text for the above reference.)
  321. # Use FIND_PACKAGE( Qt4 COMPONENTS ... ) to enable modules
  322. IF( Qt4_FIND_COMPONENTS )
  323. FOREACH( component ${Qt4_FIND_COMPONENTS} )
  324. STRING( TOUPPER ${component} _COMPONENT )
  325. SET( QT_USE_${_COMPONENT} 1 )
  326. ENDFOREACH( component )
  327. # To make sure we don't use QtCore or QtGui when not in COMPONENTS
  328. IF(NOT QT_USE_QTCORE)
  329. SET( QT_DONT_USE_QTCORE 1 )
  330. ENDIF(NOT QT_USE_QTCORE)
  331. IF(NOT QT_USE_QTGUI)
  332. SET( QT_DONT_USE_QTGUI 1 )
  333. ENDIF(NOT QT_USE_QTGUI)
  334. ENDIF( Qt4_FIND_COMPONENTS )
  335. # If Qt3 has already been found, fail.
  336. IF(QT_QT_LIBRARY)
  337. IF(Qt4_FIND_REQUIRED)
  338. MESSAGE( FATAL_ERROR "Qt3 and Qt4 cannot be used together in one project. If switching to Qt4, the CMakeCache.txt needs to be cleaned.")
  339. ELSE(Qt4_FIND_REQUIRED)
  340. IF(NOT Qt4_FIND_QUIETLY)
  341. MESSAGE( STATUS "Qt3 and Qt4 cannot be used together in one project. If switching to Qt4, the CMakeCache.txt needs to be cleaned.")
  342. ENDIF(NOT Qt4_FIND_QUIETLY)
  343. RETURN()
  344. ENDIF(Qt4_FIND_REQUIRED)
  345. ENDIF(QT_QT_LIBRARY)
  346. INCLUDE(CheckSymbolExists)
  347. INCLUDE(MacroAddFileDependencies)
  348. SET(QT_USE_FILE ${CMAKE_ROOT}/Modules/UseQt4.cmake)
  349. SET( QT_DEFINITIONS "")
  350. SET(QT4_INSTALLED_VERSION_TOO_OLD FALSE)
  351. GET_FILENAME_COMPONENT(qt_install_version "[HKEY_CURRENT_USER\\Software\\trolltech\\Versions;DefaultQtVersion]" NAME)
  352. # check for qmake
  353. # Debian uses qmake-qt4
  354. # macports' Qt uses qmake-mac
  355. FIND_PROGRAM(QT_QMAKE_EXECUTABLE NAMES qmake qmake4 qmake-qt4 qmake-mac PATHS
  356. "[HKEY_CURRENT_USER\\Software\\Trolltech\\Qt3Versions\\4.0.0;InstallDir]/bin"
  357. "[HKEY_CURRENT_USER\\Software\\Trolltech\\Versions\\4.0.0;InstallDir]/bin"
  358. "[HKEY_CURRENT_USER\\Software\\Trolltech\\Versions\\${qt_install_version};InstallDir]/bin"
  359. $ENV{QTDIR}/bin
  360. DOC "The qmake executable for the Qt installation to use"
  361. )
  362. IF (QT_QMAKE_EXECUTABLE)
  363. IF(QT_QMAKE_EXECUTABLE_LAST)
  364. STRING(COMPARE NOTEQUAL "${QT_QMAKE_EXECUTABLE_LAST}" "${QT_QMAKE_EXECUTABLE}" QT_QMAKE_CHANGED)
  365. ENDIF(QT_QMAKE_EXECUTABLE_LAST)
  366. SET(QT_QMAKE_EXECUTABLE_LAST "${QT_QMAKE_EXECUTABLE}" CACHE INTERNAL "" FORCE)
  367. SET(QT4_QMAKE_FOUND FALSE)
  368. EXEC_PROGRAM(${QT_QMAKE_EXECUTABLE} ARGS "-query QT_VERSION" OUTPUT_VARIABLE QTVERSION)
  369. # check for qt3 qmake and then try and find qmake4 or qmake-qt4 in the path
  370. IF("${QTVERSION}" MATCHES "Unknown")
  371. SET(QT_QMAKE_EXECUTABLE NOTFOUND CACHE FILEPATH "" FORCE)
  372. FIND_PROGRAM(QT_QMAKE_EXECUTABLE NAMES qmake4 qmake-qt4 PATHS
  373. "[HKEY_CURRENT_USER\\Software\\Trolltech\\Qt3Versions\\4.0.0;InstallDir]/bin"
  374. "[HKEY_CURRENT_USER\\Software\\Trolltech\\Versions\\4.0.0;InstallDir]/bin"
  375. $ENV{QTDIR}/bin
  376. DOC "The qmake executable for the Qt installation to use"
  377. )
  378. IF(QT_QMAKE_EXECUTABLE)
  379. EXEC_PROGRAM(${QT_QMAKE_EXECUTABLE}
  380. ARGS "-query QT_VERSION" OUTPUT_VARIABLE QTVERSION)
  381. ENDIF(QT_QMAKE_EXECUTABLE)
  382. ENDIF("${QTVERSION}" MATCHES "Unknown")
  383. # check that we found the Qt4 qmake, Qt3 qmake output won't match here
  384. STRING(REGEX MATCH "^[0-9]+\\.[0-9]+\\.[0-9]+" qt_version_tmp "${QTVERSION}")
  385. IF (qt_version_tmp)
  386. # we need at least version 4.0.0
  387. IF (NOT QT_MIN_VERSION)
  388. SET(QT_MIN_VERSION "4.0.0")
  389. ENDIF (NOT QT_MIN_VERSION)
  390. #now parse the parts of the user given version string into variables
  391. STRING(REGEX MATCH "^[0-9]+\\.[0-9]+\\.[0-9]+" req_qt_major_vers "${QT_MIN_VERSION}")
  392. IF (NOT req_qt_major_vers)
  393. MESSAGE( FATAL_ERROR "Invalid Qt version string given: \"${QT_MIN_VERSION}\", expected e.g. \"4.0.1\"")
  394. ENDIF (NOT req_qt_major_vers)
  395. # now parse the parts of the user given version string into variables
  396. STRING(REGEX REPLACE "^([0-9]+)\\.[0-9]+\\.[0-9]+" "\\1" req_qt_major_vers "${QT_MIN_VERSION}")
  397. STRING(REGEX REPLACE "^[0-9]+\\.([0-9])+\\.[0-9]+" "\\1" req_qt_minor_vers "${QT_MIN_VERSION}")
  398. STRING(REGEX REPLACE "^[0-9]+\\.[0-9]+\\.([0-9]+)" "\\1" req_qt_patch_vers "${QT_MIN_VERSION}")
  399. # Suppport finding at least a particular version, for instance FIND_PACKAGE( Qt4 4.4.3 )
  400. # This implementation is a hack to avoid duplicating code and make sure we stay
  401. # source-compatible with CMake 2.6.x
  402. IF( Qt4_FIND_VERSION )
  403. SET( QT_MIN_VERSION ${Qt4_FIND_VERSION} )
  404. SET( req_qt_major_vers ${Qt4_FIND_VERSION_MAJOR} )
  405. SET( req_qt_minor_vers ${Qt4_FIND_VERSION_MINOR} )
  406. SET( req_qt_patch_vers ${Qt4_FIND_VERSION_PATCH} )
  407. ENDIF( Qt4_FIND_VERSION )
  408. IF (NOT req_qt_major_vers EQUAL 4)
  409. MESSAGE( FATAL_ERROR "Invalid Qt version string given: \"${QT_MIN_VERSION}\", major version 4 is required, e.g. \"4.0.1\"")
  410. ENDIF (NOT req_qt_major_vers EQUAL 4)
  411. # and now the version string given by qmake
  412. STRING(REGEX REPLACE "^([0-9]+)\\.[0-9]+\\.[0-9]+.*" "\\1" QT_VERSION_MAJOR "${QTVERSION}")
  413. STRING(REGEX REPLACE "^[0-9]+\\.([0-9])+\\.[0-9]+.*" "\\1" QT_VERSION_MINOR "${QTVERSION}")
  414. STRING(REGEX REPLACE "^[0-9]+\\.[0-9]+\\.([0-9]+).*" "\\1" QT_VERSION_PATCH "${QTVERSION}")
  415. # compute an overall version number which can be compared at once
  416. MATH(EXPR req_vers "${req_qt_major_vers}*10000 + ${req_qt_minor_vers}*100 + ${req_qt_patch_vers}")
  417. MATH(EXPR found_vers "${QT_VERSION_MAJOR}*10000 + ${QT_VERSION_MINOR}*100 + ${QT_VERSION_PATCH}")
  418. # Support finding *exactly* a particular version, for instance FIND_PACKAGE( Qt4 4.4.3 EXACT )
  419. IF( Qt4_FIND_VERSION_EXACT )
  420. IF(found_vers EQUAL req_vers)
  421. SET( QT4_QMAKE_FOUND TRUE )
  422. ELSE(found_vers EQUAL req_vers)
  423. SET( QT4_QMAKE_FOUND FALSE )
  424. IF (found_vers LESS req_vers)
  425. SET(QT4_INSTALLED_VERSION_TOO_OLD TRUE)
  426. ELSE (found_vers LESS req_vers)
  427. SET(QT4_INSTALLED_VERSION_TOO_NEW TRUE)
  428. ENDIF (found_vers LESS req_vers)
  429. ENDIF(found_vers EQUAL req_vers)
  430. ELSE( Qt4_FIND_VERSION_EXACT )
  431. IF (found_vers LESS req_vers)
  432. SET(QT4_QMAKE_FOUND FALSE)
  433. SET(QT4_INSTALLED_VERSION_TOO_OLD TRUE)
  434. ELSE (found_vers LESS req_vers)
  435. SET(QT4_QMAKE_FOUND TRUE)
  436. ENDIF (found_vers LESS req_vers)
  437. ENDIF( Qt4_FIND_VERSION_EXACT )
  438. ENDIF (qt_version_tmp)
  439. ENDIF (QT_QMAKE_EXECUTABLE)
  440. IF (QT4_QMAKE_FOUND)
  441. # ask qmake for the library dir
  442. # Set QT_LIBRARY_DIR
  443. IF (NOT QT_LIBRARY_DIR OR QT_QMAKE_CHANGED)
  444. EXEC_PROGRAM( ${QT_QMAKE_EXECUTABLE}
  445. ARGS "-query QT_INSTALL_LIBS"
  446. OUTPUT_VARIABLE QT_LIBRARY_DIR_TMP )
  447. # make sure we have / and not \ as qmake gives on windows
  448. FILE(TO_CMAKE_PATH "${QT_LIBRARY_DIR_TMP}" QT_LIBRARY_DIR_TMP)
  449. IF(EXISTS "${QT_LIBRARY_DIR_TMP}")
  450. SET(QT_LIBRARY_DIR ${QT_LIBRARY_DIR_TMP} CACHE PATH "Qt library dir" FORCE)
  451. ELSE(EXISTS "${QT_LIBRARY_DIR_TMP}")
  452. MESSAGE("Warning: QT_QMAKE_EXECUTABLE reported QT_INSTALL_LIBS as ${QT_LIBRARY_DIR_TMP}")
  453. MESSAGE("Warning: ${QT_LIBRARY_DIR_TMP} does NOT exist, Qt must NOT be installed correctly.")
  454. ENDIF(EXISTS "${QT_LIBRARY_DIR_TMP}")
  455. ENDIF(NOT QT_LIBRARY_DIR OR QT_QMAKE_CHANGED)
  456. IF (APPLE)
  457. IF (EXISTS ${QT_LIBRARY_DIR}/QtCore.framework)
  458. SET(QT_USE_FRAMEWORKS ON
  459. CACHE BOOL "Set to ON if Qt build uses frameworks." FORCE)
  460. ELSE (EXISTS ${QT_LIBRARY_DIR}/QtCore.framework)
  461. SET(QT_USE_FRAMEWORKS OFF
  462. CACHE BOOL "Set to ON if Qt build uses frameworks." FORCE)
  463. ENDIF (EXISTS ${QT_LIBRARY_DIR}/QtCore.framework)
  464. MARK_AS_ADVANCED(QT_USE_FRAMEWORKS)
  465. ENDIF (APPLE)
  466. # ask qmake for the binary dir
  467. IF (QT_LIBRARY_DIR AND NOT QT_BINARY_DIR OR QT_QMAKE_CHANGED)
  468. EXEC_PROGRAM(${QT_QMAKE_EXECUTABLE}
  469. ARGS "-query QT_INSTALL_BINS"
  470. OUTPUT_VARIABLE qt_bins )
  471. # make sure we have / and not \ as qmake gives on windows
  472. FILE(TO_CMAKE_PATH "${qt_bins}" qt_bins)
  473. SET(QT_BINARY_DIR ${qt_bins} CACHE INTERNAL "" FORCE)
  474. ENDIF (QT_LIBRARY_DIR AND NOT QT_BINARY_DIR OR QT_QMAKE_CHANGED)
  475. # ask qmake for the include dir
  476. IF (QT_LIBRARY_DIR AND NOT QT_HEADERS_DIR OR QT_QMAKE_CHANGED)
  477. EXEC_PROGRAM( ${QT_QMAKE_EXECUTABLE}
  478. ARGS "-query QT_INSTALL_HEADERS"
  479. OUTPUT_VARIABLE qt_headers )
  480. # make sure we have / and not \ as qmake gives on windows
  481. FILE(TO_CMAKE_PATH "${qt_headers}" qt_headers)
  482. SET(QT_HEADERS_DIR ${qt_headers} CACHE INTERNAL "" FORCE)
  483. ENDIF (QT_LIBRARY_DIR AND NOT QT_HEADERS_DIR OR QT_QMAKE_CHANGED)
  484. # ask qmake for the documentation directory
  485. IF (QT_LIBRARY_DIR AND NOT QT_DOC_DIR OR QT_QMAKE_CHANGED)
  486. EXEC_PROGRAM( ${QT_QMAKE_EXECUTABLE}
  487. ARGS "-query QT_INSTALL_DOCS"
  488. OUTPUT_VARIABLE qt_doc_dir )
  489. # make sure we have / and not \ as qmake gives on windows
  490. FILE(TO_CMAKE_PATH "${qt_doc_dir}" qt_doc_dir)
  491. SET(QT_DOC_DIR ${qt_doc_dir} CACHE PATH "The location of the Qt docs" FORCE)
  492. ENDIF (QT_LIBRARY_DIR AND NOT QT_DOC_DIR OR QT_QMAKE_CHANGED)
  493. # ask qmake for the mkspecs directory
  494. IF (QT_LIBRARY_DIR AND NOT QT_MKSPECS_DIR OR QT_QMAKE_CHANGED)
  495. EXEC_PROGRAM( ${QT_QMAKE_EXECUTABLE}
  496. ARGS "-query QMAKE_MKSPECS"
  497. OUTPUT_VARIABLE qt_mkspecs_dirs )
  498. # do not replace : on windows as it might be a drive letter
  499. # and windows should already use ; as a separator
  500. IF(UNIX)
  501. STRING(REPLACE ":" ";" qt_mkspecs_dirs "${qt_mkspecs_dirs}")
  502. ENDIF(UNIX)
  503. SET(QT_MKSPECS_DIR NOTFOUND)
  504. FIND_PATH(QT_MKSPECS_DIR qconfig.pri PATHS ${qt_mkspecs_dirs}
  505. DOC "The location of the Qt mkspecs containing qconfig.pri"
  506. NO_DEFAULT_PATH )
  507. ENDIF (QT_LIBRARY_DIR AND NOT QT_MKSPECS_DIR OR QT_QMAKE_CHANGED)
  508. # ask qmake for the plugins directory
  509. IF (QT_LIBRARY_DIR AND NOT QT_PLUGINS_DIR OR QT_QMAKE_CHANGED)
  510. EXEC_PROGRAM( ${QT_QMAKE_EXECUTABLE}
  511. ARGS "-query QT_INSTALL_PLUGINS"
  512. OUTPUT_VARIABLE qt_plugins_dir )
  513. # make sure we have / and not \ as qmake gives on windows
  514. FILE(TO_CMAKE_PATH "${qt_plugins_dir}" qt_plugins_dir)
  515. SET(QT_PLUGINS_DIR ${qt_plugins_dir} CACHE PATH "The location of the Qt plugins" FORCE)
  516. ENDIF (QT_LIBRARY_DIR AND NOT QT_PLUGINS_DIR OR QT_QMAKE_CHANGED)
  517. # ask qmake for the translations directory
  518. IF (QT_LIBRARY_DIR AND NOT QT_TRANSLATIONS_DIR OR QT_QMAKE_CHANGED)
  519. EXEC_PROGRAM( ${QT_QMAKE_EXECUTABLE}
  520. ARGS "-query QT_INSTALL_TRANSLATIONS"
  521. OUTPUT_VARIABLE qt_translations_dir )
  522. # make sure we have / and not \ as qmake gives on windows
  523. FILE(TO_CMAKE_PATH "${qt_translations_dir}" qt_translations_dir)
  524. SET(QT_TRANSLATIONS_DIR ${qt_translations_dir} CACHE PATH "The location of the Qt translations" FORCE)
  525. ENDIF (QT_LIBRARY_DIR AND NOT QT_TRANSLATIONS_DIR OR QT_QMAKE_CHANGED)
  526. # Make variables changeble to the advanced user
  527. MARK_AS_ADVANCED( QT_LIBRARY_DIR QT_DOC_DIR QT_MKSPECS_DIR
  528. QT_PLUGINS_DIR QT_TRANSLATIONS_DIR)
  529. #############################################
  530. #
  531. # Find out what window system we're using
  532. #
  533. #############################################
  534. # Save required variable
  535. SET(CMAKE_REQUIRED_INCLUDES_SAVE ${CMAKE_REQUIRED_INCLUDES})
  536. SET(CMAKE_REQUIRED_FLAGS_SAVE ${CMAKE_REQUIRED_FLAGS})
  537. # Add QT_INCLUDE_DIR to CMAKE_REQUIRED_INCLUDES
  538. SET(CMAKE_REQUIRED_INCLUDES "${CMAKE_REQUIRED_INCLUDES};${QT_HEADERS_DIR}")
  539. # On Mac OS X when Qt has framework support, also add the framework path
  540. IF( QT_USE_FRAMEWORKS )
  541. SET(CMAKE_REQUIRED_FLAGS "-F${QT_LIBRARY_DIR} ")
  542. ENDIF( QT_USE_FRAMEWORKS )
  543. # Check for Window system symbols (note: only one should end up being set)
  544. CHECK_SYMBOL_EXISTS(Q_WS_X11 "QtCore/qglobal.h" Q_WS_X11)
  545. CHECK_SYMBOL_EXISTS(Q_WS_WIN "QtCore/qglobal.h" Q_WS_WIN)
  546. CHECK_SYMBOL_EXISTS(Q_WS_QWS "QtCore/qglobal.h" Q_WS_QWS)
  547. CHECK_SYMBOL_EXISTS(Q_WS_MAC "QtCore/qglobal.h" Q_WS_MAC)
  548. IF(Q_WS_MAC)
  549. IF(QT_QMAKE_CHANGED)
  550. UNSET(QT_MAC_USE_COCOA CACHE)
  551. ENDIF(QT_QMAKE_CHANGED)
  552. CHECK_SYMBOL_EXISTS(QT_MAC_USE_COCOA "QtCore/qconfig.h" QT_MAC_USE_COCOA)
  553. ENDIF(Q_WS_MAC)
  554. IF (QT_QTCOPY_REQUIRED)
  555. CHECK_SYMBOL_EXISTS(QT_IS_QTCOPY "QtCore/qglobal.h" QT_KDE_QT_COPY)
  556. IF (NOT QT_IS_QTCOPY)
  557. MESSAGE(FATAL_ERROR "qt-copy is required, but hasn't been found")
  558. ENDIF (NOT QT_IS_QTCOPY)
  559. ENDIF (QT_QTCOPY_REQUIRED)
  560. # Restore CMAKE_REQUIRED_INCLUDES and CMAKE_REQUIRED_FLAGS variables
  561. SET(CMAKE_REQUIRED_INCLUDES ${CMAKE_REQUIRED_INCLUDES_SAVE})
  562. SET(CMAKE_REQUIRED_FLAGS ${CMAKE_REQUIRED_FLAGS_SAVE})
  563. #
  564. #############################################
  565. ########################################
  566. #
  567. # Setting the INCLUDE-Variables
  568. #
  569. ########################################
  570. SET(QT_MODULES QtCore QtGui Qt3Support QtSvg QtScript QtTest QtUiTools
  571. QtHelp QtWebKit QtXmlPatterns phonon QtNetwork QtMultimedia
  572. QtNsPlugin QtOpenGL QtSql QtXml QtDesigner QtDBus QtScriptTools
  573. QtDeclarative)
  574. IF(Q_WS_X11)
  575. SET(QT_MODULES ${QT_MODULES} QtMotif)
  576. ENDIF(Q_WS_X11)
  577. IF(QT_QMAKE_CHANGED)
  578. FOREACH(QT_MODULE ${QT_MODULES})
  579. STRING(TOUPPER ${QT_MODULE} _upper_qt_module)
  580. SET(QT_${_upper_qt_module}_INCLUDE_DIR NOTFOUND)
  581. SET(QT_${_upper_qt_module}_LIBRARY_RELEASE NOTFOUND)
  582. SET(QT_${_upper_qt_module}_LIBRARY_DEBUG NOTFOUND)
  583. ENDFOREACH(QT_MODULE)
  584. SET(QT_QTDESIGNERCOMPONENTS_INCLUDE_DIR NOTFOUND)
  585. SET(QT_QTDESIGNERCOMPONENTS_LIBRARY_RELEASE NOTFOUND)
  586. SET(QT_QTDESIGNERCOMPONENTS_LIBRARY_DEBUG NOTFOUND)
  587. SET(QT_QTASSISTANTCLIENT_INCLUDE_DIR NOTFOUND)
  588. SET(QT_QTASSISTANTCLIENT_LIBRARY_RELEASE NOTFOUND)
  589. SET(QT_QTASSISTANTCLIENT_LIBRARY_DEBUG NOTFOUND)
  590. SET(QT_QTASSISTANT_INCLUDE_DIR NOTFOUND)
  591. SET(QT_QTASSISTANT_LIBRARY_RELEASE NOTFOUND)
  592. SET(QT_QTASSISTANT_LIBRARY_DEBUG NOTFOUND)
  593. SET(QT_QTCLUCENE_LIBRARY_RELEASE NOTFOUND)
  594. SET(QT_QTCLUCENE_LIBRARY_DEBUG NOTFOUND)
  595. SET(QT_QAXCONTAINER_INCLUDE_DIR NOTFOUND)
  596. SET(QT_QAXCONTAINER_LIBRARY_RELEASE NOTFOUND)
  597. SET(QT_QAXCONTAINER_LIBRARY_DEBUG NOTFOUND)
  598. SET(QT_QAXSERVER_INCLUDE_DIR NOTFOUND)
  599. SET(QT_QAXSERVER_LIBRARY_RELEASE NOTFOUND)
  600. SET(QT_QAXSERVER_LIBRARY_DEBUG NOTFOUND)
  601. IF(WIN32)
  602. SET(QT_QTMAIN_LIBRARY_DEBUG NOTFOUND)
  603. SET(QT_QTMAIN_LIBRARY_RELEASE NOTFOUND)
  604. ENDIF(WIN32)
  605. ENDIF(QT_QMAKE_CHANGED)
  606. FOREACH(QT_MODULE ${QT_MODULES})
  607. STRING(TOUPPER ${QT_MODULE} _upper_qt_module)
  608. FIND_PATH(QT_${_upper_qt_module}_INCLUDE_DIR ${QT_MODULE}
  609. PATHS
  610. ${QT_HEADERS_DIR}/${QT_MODULE}
  611. ${QT_LIBRARY_DIR}/${QT_MODULE}.framework/Headers
  612. NO_DEFAULT_PATH
  613. )
  614. # phonon doesn't seem consistent, let's try phonondefs.h for some
  615. # installations
  616. IF(${QT_MODULE} STREQUAL "phonon")
  617. FIND_PATH(QT_${_upper_qt_module}_INCLUDE_DIR phonondefs.h
  618. PATHS
  619. ${QT_HEADERS_DIR}/${QT_MODULE}
  620. ${QT_LIBRARY_DIR}/${QT_MODULE}.framework/Headers
  621. NO_DEFAULT_PATH
  622. )
  623. ENDIF(${QT_MODULE} STREQUAL "phonon")
  624. ENDFOREACH(QT_MODULE)
  625. IF(WIN32)
  626. SET(QT_MODULES ${QT_MODULES} QAxContainer QAxServer)
  627. # Set QT_AXCONTAINER_INCLUDE_DIR and QT_AXSERVER_INCLUDE_DIR
  628. FIND_PATH(QT_QAXCONTAINER_INCLUDE_DIR ActiveQt
  629. PATHS
  630. ${QT_HEADERS_DIR}/ActiveQt
  631. NO_DEFAULT_PATH
  632. )
  633. FIND_PATH(QT_QAXSERVER_INCLUDE_DIR ActiveQt
  634. PATHS
  635. ${QT_HEADERS_DIR}/ActiveQt
  636. NO_DEFAULT_PATH
  637. )
  638. ENDIF(WIN32)
  639. # Set QT_QTDESIGNERCOMPONENTS_INCLUDE_DIR
  640. FIND_PATH(QT_QTDESIGNERCOMPONENTS_INCLUDE_DIR QDesignerComponents
  641. PATHS
  642. ${QT_HEADERS_DIR}/QtDesigner
  643. ${QT_LIBRARY_DIR}/QtDesigner.framework/Headers
  644. NO_DEFAULT_PATH
  645. )
  646. # Set QT_QTASSISTANT_INCLUDE_DIR
  647. FIND_PATH(QT_QTASSISTANT_INCLUDE_DIR QtAssistant
  648. PATHS
  649. ${QT_HEADERS_DIR}/QtAssistant
  650. ${QT_LIBRARY_DIR}/QtAssistant.framework/Headers
  651. NO_DEFAULT_PATH
  652. )
  653. # Set QT_QTASSISTANTCLIENT_INCLUDE_DIR
  654. FIND_PATH(QT_QTASSISTANTCLIENT_INCLUDE_DIR QAssistantClient
  655. PATHS
  656. ${QT_HEADERS_DIR}/QtAssistant
  657. ${QT_LIBRARY_DIR}/QtAssistant.framework/Headers
  658. NO_DEFAULT_PATH
  659. )
  660. # Set QT_INCLUDE_DIR by removine "/QtCore" in the string ${QT_QTCORE_INCLUDE_DIR}
  661. IF( QT_QTCORE_INCLUDE_DIR )
  662. IF (QT_USE_FRAMEWORKS)
  663. SET(QT_INCLUDE_DIR ${QT_HEADERS_DIR})
  664. ELSE (QT_USE_FRAMEWORKS)
  665. STRING( REGEX REPLACE "/QtCore$" "" qt4_include_dir ${QT_QTCORE_INCLUDE_DIR})
  666. SET( QT_INCLUDE_DIR ${qt4_include_dir})
  667. ENDIF (QT_USE_FRAMEWORKS)
  668. ENDIF( QT_QTCORE_INCLUDE_DIR )
  669. IF( NOT QT_INCLUDE_DIR)
  670. IF(Qt4_FIND_REQUIRED)
  671. MESSAGE( FATAL_ERROR "Could NOT find QtCore header")
  672. ENDIF(Qt4_FIND_REQUIRED)
  673. ENDIF( NOT QT_INCLUDE_DIR)
  674. # Make variables changeble to the advanced user
  675. MARK_AS_ADVANCED( QT_INCLUDE_DIR )
  676. # Set QT_INCLUDES
  677. SET( QT_INCLUDES ${QT_MKSPECS_DIR}/default ${QT_INCLUDE_DIR} )
  678. #######################################
  679. #
  680. # Qt configuration
  681. #
  682. #######################################
  683. IF(EXISTS "${QT_MKSPECS_DIR}/qconfig.pri")
  684. FILE(READ ${QT_MKSPECS_DIR}/qconfig.pri _qconfig_FILE_contents)
  685. STRING(REGEX MATCH "QT_CONFIG[^\n]+" QT_QCONFIG "${_qconfig_FILE_contents}")
  686. STRING(REGEX MATCH "CONFIG[^\n]+" QT_CONFIG "${_qconfig_FILE_contents}")
  687. STRING(REGEX MATCH "EDITION[^\n]+" QT_EDITION "${_qconfig_FILE_contents}")
  688. STRING(REGEX MATCH "QT_LIBINFIX[^\n]+" _qconfig_qt_libinfix "${_qconfig_FILE_contents}")
  689. STRING(REGEX REPLACE "QT_LIBINFIX *= *([^\n]*)" "\\1" QT_LIBINFIX "${_qconfig_qt_libinfix}")
  690. ENDIF(EXISTS "${QT_MKSPECS_DIR}/qconfig.pri")
  691. IF("${QT_EDITION}" MATCHES "DesktopLight")
  692. SET(QT_EDITION_DESKTOPLIGHT 1)
  693. ENDIF("${QT_EDITION}" MATCHES "DesktopLight")
  694. ########################################
  695. #
  696. # Setting the LIBRARY-Variables
  697. #
  698. ########################################
  699. # find the libraries
  700. FOREACH(QT_MODULE ${QT_MODULES})
  701. STRING(TOUPPER ${QT_MODULE} _upper_qt_module)
  702. FIND_LIBRARY(QT_${_upper_qt_module}_LIBRARY_RELEASE
  703. NAMES ${QT_MODULE}${QT_LIBINFIX} ${QT_MODULE}${QT_LIBINFIX}4
  704. PATHS ${QT_LIBRARY_DIR} NO_DEFAULT_PATH
  705. )
  706. FIND_LIBRARY(QT_${_upper_qt_module}_LIBRARY_DEBUG
  707. NAMES ${QT_MODULE}${QT_LIBINFIX}_debug ${QT_MODULE}${QT_LIBINFIX}d ${QT_MODULE}${QT_LIBINFIX}d4
  708. PATHS ${QT_LIBRARY_DIR} NO_DEFAULT_PATH
  709. )
  710. ENDFOREACH(QT_MODULE)
  711. # QtUiTools not with other frameworks with binary installation (in /usr/lib)
  712. IF(Q_WS_MAC AND QT_QTCORE_LIBRARY_RELEASE AND NOT QT_QTUITOOLS_LIBRARY_RELEASE)
  713. FIND_LIBRARY(QT_QTUITOOLS_LIBRARY_RELEASE NAMES QtUiTools${QT_LIBINFIX} PATHS ${QT_LIBRARY_DIR})
  714. ENDIF(Q_WS_MAC AND QT_QTCORE_LIBRARY_RELEASE AND NOT QT_QTUITOOLS_LIBRARY_RELEASE)
  715. IF( NOT QT_QTCORE_LIBRARY_DEBUG AND NOT QT_QTCORE_LIBRARY_RELEASE )
  716. # try dropping a hint if trying to use Visual Studio with Qt built by mingw
  717. IF(QT_LIBRARY_DIR AND MSVC)
  718. IF(EXISTS ${QT_LIBRARY_DIR}/libqtmain.a)
  719. MESSAGE( FATAL_ERROR "It appears you're trying to use Visual Studio with Qt built by mingw")
  720. ENDIF(EXISTS ${QT_LIBRARY_DIR}/libqtmain.a)
  721. ENDIF(QT_LIBRARY_DIR AND MSVC)
  722. IF(Qt4_FIND_REQUIRED)
  723. MESSAGE( FATAL_ERROR "Could NOT find QtCore. Check ${CMAKE_BINARY_DIR}${CMAKE_FILES_DIRECTORY}/CMakeError.log for more details.")
  724. ENDIF(Qt4_FIND_REQUIRED)
  725. ENDIF( NOT QT_QTCORE_LIBRARY_DEBUG AND NOT QT_QTCORE_LIBRARY_RELEASE )
  726. # Set QT_QTDESIGNERCOMPONENTS_LIBRARY
  727. FIND_LIBRARY(QT_QTDESIGNERCOMPONENTS_LIBRARY_RELEASE NAMES QtDesignerComponents${QT_LIBINFIX} QtDesignerComponents${QT_LIBINFIX}4 PATHS ${QT_LIBRARY_DIR} NO_DEFAULT_PATH)
  728. 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)
  729. # Set QT_QTMAIN_LIBRARY
  730. IF(WIN32)
  731. FIND_LIBRARY(QT_QTMAIN_LIBRARY_RELEASE NAMES qtmain${QT_LIBINFIX} PATHS ${QT_LIBRARY_DIR}
  732. NO_DEFAULT_PATH)
  733. FIND_LIBRARY(QT_QTMAIN_LIBRARY_DEBUG NAMES qtmain${QT_LIBINFIX}d PATHS ${QT_LIBRARY_DIR}
  734. NO_DEFAULT_PATH)
  735. ENDIF(WIN32)
  736. # Set QT_QTASSISTANTCLIENT_LIBRARY
  737. FIND_LIBRARY(QT_QTASSISTANTCLIENT_LIBRARY_RELEASE NAMES QtAssistantClient${QT_LIBINFIX} QtAssistantClient${QT_LIBINFIX}4 PATHS ${QT_LIBRARY_DIR} NO_DEFAULT_PATH)
  738. 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)
  739. # Set QT_QTASSISTANT_LIBRARY
  740. 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)
  741. 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)
  742. # Set QT_QTHELP_LIBRARY
  743. FIND_LIBRARY(QT_QTCLUCENE_LIBRARY_RELEASE NAMES QtCLucene${QT_LIBINFIX} QtCLucene${QT_LIBINFIX}4 PATHS ${QT_LIBRARY_DIR} NO_DEFAULT_PATH)
  744. 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)
  745. # QtCLucene not with other frameworks with binary installation (in /usr/lib)
  746. IF(Q_WS_MAC AND QT_QTCORE_LIBRARY_RELEASE AND NOT QT_QTCLUCENE_LIBRARY_RELEASE)
  747. FIND_LIBRARY(QT_QTCLUCENE_LIBRARY_RELEASE NAMES QtCLucene${QT_LIBINFIX} PATHS ${QT_LIBRARY_DIR})
  748. ENDIF(Q_WS_MAC AND QT_QTCORE_LIBRARY_RELEASE AND NOT QT_QTCLUCENE_LIBRARY_RELEASE)
  749. ############################################
  750. #
  751. # Check the existence of the libraries.
  752. #
  753. ############################################
  754. # On OSX when Qt is found as framework, never use the imported targets for now, since
  755. # in this case the handling of the framework directory currently does not work correctly.
  756. IF(QT_USE_FRAMEWORKS)
  757. SET(QT_USE_IMPORTED_TARGETS FALSE)
  758. ENDIF(QT_USE_FRAMEWORKS)
  759. MACRO (_QT4_ADJUST_LIB_VARS _camelCaseBasename)
  760. STRING(TOUPPER "${_camelCaseBasename}" basename)
  761. # The name of the imported targets, i.e. the prefix "Qt4::" must not change,
  762. # since it is stored in EXPORT-files as name of a required library. If the name would change
  763. # here, this would lead to the imported Qt4-library targets not being resolved by cmake anymore.
  764. IF (QT_${basename}_LIBRARY_RELEASE OR QT_${basename}_LIBRARY_DEBUG)
  765. IF(NOT TARGET Qt4::${_camelCaseBasename})
  766. ADD_LIBRARY(Qt4::${_camelCaseBasename} UNKNOWN IMPORTED )
  767. IF (QT_${basename}_LIBRARY_RELEASE)
  768. SET_PROPERTY(TARGET Qt4::${_camelCaseBasename} APPEND PROPERTY IMPORTED_CONFIGURATIONS RELEASE)
  769. SET_PROPERTY(TARGET Qt4::${_camelCaseBasename} PROPERTY IMPORTED_LOCATION_RELEASE "${QT_${basename}_LIBRARY_RELEASE}" )
  770. ENDIF (QT_${basename}_LIBRARY_RELEASE)
  771. IF (QT_${basename}_LIBRARY_DEBUG)
  772. SET_PROPERTY(TARGET Qt4::${_camelCaseBasename} APPEND PROPERTY IMPORTED_CONFIGURATIONS DEBUG)
  773. SET_PROPERTY(TARGET Qt4::${_camelCaseBasename} PROPERTY IMPORTED_LOCATION_DEBUG "${QT_${basename}_LIBRARY_DEBUG}" )
  774. ENDIF (QT_${basename}_LIBRARY_DEBUG)
  775. ENDIF(NOT TARGET Qt4::${_camelCaseBasename})
  776. # If QT_USE_IMPORTED_TARGETS is enabled, the QT_QTFOO_LIBRARY variables are set to point at these
  777. # imported targets. This works better in general, and is also in almost all cases fully
  778. # backward compatible. The only issue is when a project A which had this enabled then exports its
  779. # libraries via export or EXPORT_LIBRARY_DEPENDENCIES(). In this case the libraries from project
  780. # A will depend on the imported Qt targets, and the names of these imported targets will be stored
  781. # in the dependency files on disk. This means when a project B then uses project A, these imported
  782. # targets must be created again, otherwise e.g. "Qt4__QtCore" will be interpreted as name of a
  783. # library file on disk, and not as a target, and linking will fail:
  784. IF(QT_USE_IMPORTED_TARGETS)
  785. SET(QT_${basename}_LIBRARY Qt4::${_camelCaseBasename} )
  786. SET(QT_${basename}_LIBRARIES Qt4::${_camelCaseBasename} )
  787. ELSE(QT_USE_IMPORTED_TARGETS)
  788. # if the release- as well as the debug-version of the library have been found:
  789. IF (QT_${basename}_LIBRARY_DEBUG AND QT_${basename}_LIBRARY_RELEASE)
  790. # if the generator supports configuration types then set
  791. # optimized and debug libraries, or if the CMAKE_BUILD_TYPE has a value
  792. IF (CMAKE_CONFIGURATION_TYPES OR CMAKE_BUILD_TYPE)
  793. SET(QT_${basename}_LIBRARY optimized ${QT_${basename}_LIBRARY_RELEASE} debug ${QT_${basename}_LIBRARY_DEBUG})
  794. ELSE(CMAKE_CONFIGURATION_TYPES OR CMAKE_BUILD_TYPE)
  795. # if there are no configuration types and CMAKE_BUILD_TYPE has no value
  796. # then just use the release libraries
  797. SET(QT_${basename}_LIBRARY ${QT_${basename}_LIBRARY_RELEASE} )
  798. ENDIF(CMAKE_CONFIGURATION_TYPES OR CMAKE_BUILD_TYPE)
  799. SET(QT_${basename}_LIBRARIES optimized ${QT_${basename}_LIBRARY_RELEASE} debug ${QT_${basename}_LIBRARY_DEBUG})
  800. ENDIF (QT_${basename}_LIBRARY_DEBUG AND QT_${basename}_LIBRARY_RELEASE)
  801. # if only the release version was found, set the debug variable also to the release version
  802. IF (QT_${basename}_LIBRARY_RELEASE AND NOT QT_${basename}_LIBRARY_DEBUG)
  803. SET(QT_${basename}_LIBRARY_DEBUG ${QT_${basename}_LIBRARY_RELEASE})
  804. SET(QT_${basename}_LIBRARY ${QT_${basename}_LIBRARY_RELEASE})
  805. SET(QT_${basename}_LIBRARIES ${QT_${basename}_LIBRARY_RELEASE})
  806. ENDIF (QT_${basename}_LIBRARY_RELEASE AND NOT QT_${basename}_LIBRARY_DEBUG)
  807. # if only the debug version was found, set the release variable also to the debug version
  808. IF (QT_${basename}_LIBRARY_DEBUG AND NOT QT_${basename}_LIBRARY_RELEASE)
  809. SET(QT_${basename}_LIBRARY_RELEASE ${QT_${basename}_LIBRARY_DEBUG})
  810. SET(QT_${basename}_LIBRARY ${QT_${basename}_LIBRARY_DEBUG})
  811. SET(QT_${basename}_LIBRARIES ${QT_${basename}_LIBRARY_DEBUG})
  812. ENDIF (QT_${basename}_LIBRARY_DEBUG AND NOT QT_${basename}_LIBRARY_RELEASE)
  813. # put the value in the cache:
  814. SET(QT_${basename}_LIBRARY ${QT_${basename}_LIBRARY} CACHE STRING "The Qt ${basename} library" FORCE)
  815. ENDIF(QT_USE_IMPORTED_TARGETS)
  816. # message(STATUS "QT_${basename}_LIBRARY: ${QT_${basename}_LIBRARY}")
  817. SET(QT_${basename}_FOUND 1)
  818. ENDIF (QT_${basename}_LIBRARY_RELEASE OR QT_${basename}_LIBRARY_DEBUG)
  819. IF (QT_${basename}_INCLUDE_DIR)
  820. #add the include directory to QT_INCLUDES
  821. SET(QT_INCLUDES "${QT_${basename}_INCLUDE_DIR}" ${QT_INCLUDES})
  822. ENDIF (QT_${basename}_INCLUDE_DIR)
  823. # Make variables changeble to the advanced user
  824. MARK_AS_ADVANCED(QT_${basename}_LIBRARY QT_${basename}_LIBRARY_RELEASE QT_${basename}_LIBRARY_DEBUG QT_${basename}_INCLUDE_DIR)
  825. ENDMACRO (_QT4_ADJUST_LIB_VARS)
  826. # Set QT_xyz_LIBRARY variable and add
  827. # library include path to QT_INCLUDES
  828. _QT4_ADJUST_LIB_VARS(QtCore)
  829. _QT4_ADJUST_LIB_VARS(QtGui)
  830. _QT4_ADJUST_LIB_VARS(Qt3Support)
  831. _QT4_ADJUST_LIB_VARS(QtAssistant)
  832. _QT4_ADJUST_LIB_VARS(QtAssistantClient)
  833. _QT4_ADJUST_LIB_VARS(QtCLucene)
  834. _QT4_ADJUST_LIB_VARS(QtDBus)
  835. _QT4_ADJUST_LIB_VARS(QtDeclarative)
  836. _QT4_ADJUST_LIB_VARS(QtDesigner)
  837. _QT4_ADJUST_LIB_VARS(QtDesignerComponents)
  838. _QT4_ADJUST_LIB_VARS(QtHelp)
  839. _QT4_ADJUST_LIB_VARS(QtMultimedia)
  840. _QT4_ADJUST_LIB_VARS(QtNetwork)
  841. _QT4_ADJUST_LIB_VARS(QtNsPlugin)
  842. _QT4_ADJUST_LIB_VARS(QtOpenGL)
  843. _QT4_ADJUST_LIB_VARS(QtScript)
  844. _QT4_ADJUST_LIB_VARS(QtScriptTools)
  845. _QT4_ADJUST_LIB_VARS(QtSql)
  846. _QT4_ADJUST_LIB_VARS(QtSvg)
  847. _QT4_ADJUST_LIB_VARS(QtTest)
  848. _QT4_ADJUST_LIB_VARS(QtUiTools)
  849. _QT4_ADJUST_LIB_VARS(QtWebKit)
  850. _QT4_ADJUST_LIB_VARS(QtXml)
  851. _QT4_ADJUST_LIB_VARS(QtXmlPatterns)
  852. _QT4_ADJUST_LIB_VARS(phonon)
  853. # platform dependent libraries
  854. IF(Q_WS_X11)
  855. _QT4_ADJUST_LIB_VARS(QtMotif)
  856. ENDIF(Q_WS_X11)
  857. IF(WIN32)
  858. _QT4_ADJUST_LIB_VARS(qtmain)
  859. _QT4_ADJUST_LIB_VARS(QAxServer)
  860. _QT4_ADJUST_LIB_VARS(QAxContainer)
  861. ENDIF(WIN32)
  862. # If Qt is installed as a framework, we need to add QT_QTCORE_LIBRARY here (which
  863. # is the framework directory in that case), since this will make the cmake include_directories()
  864. # command recognize that we need the framework flag with the respective directory (-F)
  865. IF(QT_USE_FRAMEWORKS)
  866. SET(QT_INCLUDES ${QT_INCLUDES} ${QT_QTCORE_LIBRARY} )
  867. SET(QT_INCLUDE_DIR ${QT_INCLUDE_DIR} ${QT_QTCORE_LIBRARY} )
  868. ENDIF(QT_USE_FRAMEWORKS)
  869. #######################################
  870. #
  871. # Check the executables of Qt
  872. # ( moc, uic, rcc )
  873. #
  874. #######################################
  875. IF(QT_QMAKE_CHANGED)
  876. SET(QT_UIC_EXECUTABLE NOTFOUND)
  877. SET(QT_MOC_EXECUTABLE NOTFOUND)
  878. SET(QT_UIC3_EXECUTABLE NOTFOUND)
  879. SET(QT_RCC_EXECUTABLE NOTFOUND)
  880. SET(QT_DBUSCPP2XML_EXECUTABLE NOTFOUND)
  881. SET(QT_DBUSXML2CPP_EXECUTABLE NOTFOUND)
  882. SET(QT_LUPDATE_EXECUTABLE NOTFOUND)
  883. SET(QT_LRELEASE_EXECUTABLE NOTFOUND)
  884. SET(QT_QCOLLECTIONGENERATOR_EXECUTABLE NOTFOUND)
  885. SET(QT_DESIGNER_EXECUTABLE NOTFOUND)
  886. SET(QT_LINGUIST_EXECUTABLE NOTFOUND)
  887. ENDIF(QT_QMAKE_CHANGED)
  888. FIND_PROGRAM(QT_MOC_EXECUTABLE
  889. NAMES moc-qt4 moc
  890. PATHS ${QT_BINARY_DIR}
  891. NO_DEFAULT_PATH
  892. )
  893. FIND_PROGRAM(QT_UIC_EXECUTABLE
  894. NAMES uic-qt4 uic
  895. PATHS ${QT_BINARY_DIR}
  896. NO_DEFAULT_PATH
  897. )
  898. FIND_PROGRAM(QT_UIC3_EXECUTABLE
  899. NAMES uic3
  900. PATHS ${QT_BINARY_DIR}
  901. NO_DEFAULT_PATH
  902. )
  903. FIND_PROGRAM(QT_RCC_EXECUTABLE
  904. NAMES rcc
  905. PATHS ${QT_BINARY_DIR}
  906. NO_DEFAULT_PATH
  907. )
  908. FIND_PROGRAM(QT_DBUSCPP2XML_EXECUTABLE
  909. NAMES qdbuscpp2xml
  910. PATHS ${QT_BINARY_DIR}
  911. NO_DEFAULT_PATH
  912. )
  913. FIND_PROGRAM(QT_DBUSXML2CPP_EXECUTABLE
  914. NAMES qdbusxml2cpp
  915. PATHS ${QT_BINARY_DIR}
  916. NO_DEFAULT_PATH
  917. )
  918. FIND_PROGRAM(QT_LUPDATE_EXECUTABLE
  919. NAMES lupdate-qt4 lupdate
  920. PATHS ${QT_BINARY_DIR}
  921. NO_DEFAULT_PATH
  922. )
  923. FIND_PROGRAM(QT_LRELEASE_EXECUTABLE
  924. NAMES lrelease-qt4 lrelease
  925. PATHS ${QT_BINARY_DIR}
  926. NO_DEFAULT_PATH
  927. )
  928. FIND_PROGRAM(QT_QCOLLECTIONGENERATOR_EXECUTABLE
  929. NAMES qcollectiongenerator-qt4 qcollectiongenerator
  930. PATHS ${QT_BINARY_DIR}
  931. NO_DEFAULT_PATH
  932. )
  933. FIND_PROGRAM(QT_DESIGNER_EXECUTABLE
  934. NAMES designer-qt4 designer
  935. PATHS ${QT_BINARY_DIR}
  936. NO_DEFAULT_PATH
  937. )
  938. FIND_PROGRAM(QT_LINGUIST_EXECUTABLE
  939. NAMES linguist-qt4 linguist
  940. PATHS ${QT_BINARY_DIR}
  941. NO_DEFAULT_PATH
  942. )
  943. IF (QT_MOC_EXECUTABLE)
  944. SET(QT_WRAP_CPP "YES")
  945. ENDIF (QT_MOC_EXECUTABLE)
  946. IF (QT_UIC_EXECUTABLE)
  947. SET(QT_WRAP_UI "YES")
  948. ENDIF (QT_UIC_EXECUTABLE)
  949. MARK_AS_ADVANCED( QT_UIC_EXECUTABLE QT_UIC3_EXECUTABLE QT_MOC_EXECUTABLE
  950. QT_RCC_EXECUTABLE QT_DBUSXML2CPP_EXECUTABLE QT_DBUSCPP2XML_EXECUTABLE
  951. QT_LUPDATE_EXECUTABLE QT_LRELEASE_EXECUTABLE QT_QCOLLECTIONGENERATOR_EXECUTABLE
  952. QT_DESIGNER_EXECUTABLE QT_LINGUIST_EXECUTABLE)
  953. # get the directory of the current file, used later on in the file
  954. GET_FILENAME_COMPONENT( _qt4_current_dir "${CMAKE_CURRENT_LIST_FILE}" PATH)
  955. ######################################
  956. #
  957. # Macros for building Qt files
  958. #
  959. ######################################
  960. INCLUDE("${_qt4_current_dir}/Qt4Macros.cmake")
  961. ######################################
  962. #
  963. # decide if Qt got found
  964. #
  965. ######################################
  966. # if the includes,libraries,moc,uic and rcc are found then we have it
  967. IF( QT_LIBRARY_DIR AND QT_INCLUDE_DIR AND QT_MOC_EXECUTABLE AND
  968. QT_UIC_EXECUTABLE AND QT_RCC_EXECUTABLE AND QT_QTCORE_LIBRARY)
  969. SET( QT4_FOUND "YES" )
  970. INCLUDE(FindPackageMessage)
  971. FIND_PACKAGE_MESSAGE(Qt4 "Found Qt-Version ${QTVERSION} (using ${QT_QMAKE_EXECUTABLE})"
  972. "[${QT_LIBRARY_DIR}][${QT_INCLUDE_DIR}][${QT_MOC_EXECUTABLE}][${QT_UIC_EXECUTABLE}][${QT_RCC_EXECUTABLE}]")
  973. ELSE( QT_LIBRARY_DIR AND QT_INCLUDE_DIR AND QT_MOC_EXECUTABLE AND
  974. QT_UIC_EXECUTABLE AND QT_RCC_EXECUTABLE AND QT_QTCORE_LIBRARY)
  975. SET( QT4_FOUND "NO")
  976. SET(QT_QMAKE_EXECUTABLE "${QT_QMAKE_EXECUTABLE}-NOTFOUND" CACHE FILEPATH "Invalid qmake found" FORCE)
  977. IF( Qt4_FIND_REQUIRED)
  978. MESSAGE( FATAL_ERROR "Qt libraries, includes, moc, uic or/and rcc NOT found!")
  979. ENDIF( Qt4_FIND_REQUIRED)
  980. ENDIF( QT_LIBRARY_DIR AND QT_INCLUDE_DIR AND QT_MOC_EXECUTABLE AND
  981. QT_UIC_EXECUTABLE AND QT_RCC_EXECUTABLE AND QT_QTCORE_LIBRARY)
  982. SET(QT_FOUND ${QT4_FOUND})
  983. ###############################################
  984. #
  985. # configuration/system dependent settings
  986. #
  987. ###############################################
  988. INCLUDE("${_qt4_current_dir}/Qt4ConfigDependentSettings.cmake")
  989. #######################################
  990. #
  991. # compatibility settings
  992. #
  993. #######################################
  994. # Backwards compatibility for CMake1.4 and 1.2
  995. SET (QT_MOC_EXE ${QT_MOC_EXECUTABLE} )
  996. SET (QT_UIC_EXE ${QT_UIC_EXECUTABLE} )
  997. SET( QT_QT_LIBRARY "")
  998. ELSE(QT4_QMAKE_FOUND)
  999. SET(QT_QMAKE_EXECUTABLE "${QT_QMAKE_EXECUTABLE}-NOTFOUND" CACHE FILEPATH "Invalid qmake found" FORCE)
  1000. # The code below is overly complex to make sure we do not break compatibility with CMake 2.6.x
  1001. # For CMake 2.8, it should be simplified by getting rid of QT4_INSTALLED_VERSION_TOO_OLD and
  1002. # QT4_INSTALLED_VERSION_TOO_NEW
  1003. IF(Qt4_FIND_REQUIRED)
  1004. IF(QT4_INSTALLED_VERSION_TOO_OLD)
  1005. IF( Qt4_FIND_VERSION_EXACT )
  1006. MESSAGE(FATAL_ERROR "The installed Qt version ${QTVERSION} is too old, version ${QT_MIN_VERSION} is required")
  1007. ELSE( Qt4_FIND_VERSION_EXACT )
  1008. MESSAGE(FATAL_ERROR "The installed Qt version ${QTVERSION} is too old, at least version ${QT_MIN_VERSION} is required")
  1009. ENDIF( Qt4_FIND_VERSION_EXACT )
  1010. ELSE(QT4_INSTALLED_VERSION_TOO_OLD)
  1011. IF( Qt4_FIND_VERSION_EXACT AND QT4_INSTALLED_VERSION_TOO_NEW )
  1012. MESSAGE(FATAL_ERROR "The installed Qt version ${QTVERSION} is too new, version ${QT_MIN_VERSION} is required")
  1013. ELSE( Qt4_FIND_VERSION_EXACT AND QT4_INSTALLED_VERSION_TOO_NEW )
  1014. MESSAGE( FATAL_ERROR "Qt qmake not found!")
  1015. ENDIF( Qt4_FIND_VERSION_EXACT AND QT4_INSTALLED_VERSION_TOO_NEW )
  1016. ENDIF(QT4_INSTALLED_VERSION_TOO_OLD)
  1017. ELSE(Qt4_FIND_REQUIRED)
  1018. IF(QT4_INSTALLED_VERSION_TOO_OLD AND NOT Qt4_FIND_QUIETLY)
  1019. MESSAGE(STATUS "The installed Qt version ${QTVERSION} is too old, at least version ${QT_MIN_VERSION} is required")
  1020. ENDIF(QT4_INSTALLED_VERSION_TOO_OLD AND NOT Qt4_FIND_QUIETLY)
  1021. ENDIF(Qt4_FIND_REQUIRED)
  1022. ENDIF (QT4_QMAKE_FOUND)