summaryrefslogtreecommitdiffstats
path: root/Modules/Qt4ConfigDependentSettings.cmake
Commit message (Collapse)AuthorAgeFilesLines
* Change to use FindX11.cmake. Should fix #9929.Clinton Stimpson2010-03-171-53/+25
|
* ENH: Modify how OpenGL is searched for, that is, use FindOpenGL.cmake.Clinton Stimpson2010-03-171-17/+5
|
* Fix Qt with OpenGL on the Mac.Bill Hoffman2010-03-101-1/+15
|
* Put quotes arounds strings when doing STREQUAL.Clinton Stimpson2010-01-181-2/+2
|
* BUG: Fix #10021 don't specify libraries Qt depends on unless Qt is static.Clinton Stimpson2009-12-151-7/+25
|
* Fix bug #9918, spaces included in QT_LIBRARIES when using QtOpenGL.Clinton Stimpson2009-11-181-0/+1
|
* only add -DQT_DLL on Windows, ok by ClintonAlexander Neundorf2009-11-171-2/+2
| | | | Alex
* Split some logic of FindQt4.cmake into separate files, which are included ↵Alexander Neundorf2009-11-151-0/+340
automatically. Qt4Macros.cmake: all the "public" macros of FindQt4.cmake Qt4ConfigDependentSettings.cmake: the code for detecting the Qt-configuration dependent additional libraries, e.g. when linking statically. There should be no functional changes in this patch. The patch reduces the length of FindQt4.cmake from 1700 lines to around 1000 lines, which is still long enough, but this should make the file a easier to handle (and it is similar to what we do in KDE with FindKDE4Internal.cmake and KDE4Macros.cmake) Ok by Clinton. Alex