summaryrefslogtreecommitdiffstats
path: root/Modules/FindQt4.cmake
Commit message (Collapse)AuthorAgeFilesLines
...
* Only add existing targets to the Qt4 target depends properties.Stephen Kelly2013-02-261-6/+10
| | | | | Qt can be configured in ways which disable certain modules. Make sure we don't fail on that.
* Don't add target-specific interface includes and defines to Qt 4 targets.Stephen Kelly2013-02-131-8/+0
| | | | | This is a partial revert of commit c8ee07d0 (FindQt4: Add INTERFACE includes and defines to Qt4 targets, 2012-12-31).
* Generate config-specific interface link libraries propeties.Stephen Kelly2013-02-091-6/+18
| | | | | All other properties we generate are config-specific, so it makes sense to do so here too.
* Automatically link to the qtmain library when linking to QtCore.Stephen Kelly2013-01-231-0/+28
| | | | | When using QAxServer, ensure that the qtmain library is excluded by reporting an error at CMake time if it is not.
* Merge topic 'qt4-target-depends'Brad King2013-01-101-0/+26
|\ | | | | | | | | c8ee07d FindQt4: Add INTERFACE includes and defines to Qt4 targets
| * FindQt4: Add INTERFACE includes and defines to Qt4 targetsStephen Kelly2013-01-101-0/+26
| |
* | Merge topic 'qt4-version-openssl'Brad King2013-01-081-5/+5
|\ \ | |/ |/| | | | | 4b9ec00 FindQt4: set QT_VERSION_* variables sooner.
| * FindQt4: set QT_VERSION_* variables sooner.Clinton Stimpson2013-01-071-5/+5
| | | | | | | | | | Set QT_VERSION_* variables sooner so they can be set before Qt4ConfigDependentSettings.cmake uses them.
* | Qt4: Add module dependencies to the IMPORTED targetsStephen Kelly2013-01-071-0/+55
|/ | | | | | | | | | | | | | This means for example, that consumers can use: target_link_libraries(foo ${QT_QTGUI_LIBRARIES}) instead of also needing to specify all 'public' dependencies: target_link_libraries(foo ${QT_QTGUI_LIBRARIES} ${QT_QTCORE_LIBRARIES} ) when using the IMPORTED targets. Also populate the IMPORTED_LINK_DEPENDENT_LIBRARIES property so CMake can help the linker find shared library dependencies.
* Merge topic 'OpenBSD-patches'David Cole2012-12-111-6/+6
|\ | | | | | | | | f80ccac OpenBSD: Add paths for Qt3/Qt4
| * OpenBSD: Add paths for Qt3/Qt4Amit Kulkarni2012-12-051-6/+6
| | | | | | | | | | | | | | Handle OpenBSD specific paths in Qt3/Qt4, allowing concurrent building and installation. Some common programs are renamed with suffixes of either 3 or 4. Also, allow qt3/qt4 installed under /usr/local to be searched and recognized appropriately.
* | Qt4: Add SYSTEM option to include_directories.Clinton Stimpson2012-12-031-0/+4
|/ | | | Thanks to Scott Bailey and Benjamin Kloster.
* Find* (and some other): use ${CMAKE_CURRENT_LIST_DIR} in include()Rolf Eike Beer2012-11-041-2/+2
| | | | | | This solves a lots of warnings, e.g. in the FindModulesExecuteAll test. If the installed version on the system is rather old this may even lead to bugs, e.g. https://bugs.gentoo.org/show_bug.cgi?id=436540
* FindQt4: Avoid "finding" non-existent library in a .frameworkDavid Cole2012-09-061-0/+12
| | | | | | ...if the library file does not exist inside the .framework then do not allow a library variable to be set to the path to the framework. Force set it to NOTFOUND instead.
* Merge topic 'fix-Qt-casing'Brad King2012-08-301-1/+1
|\ | | | | | | | | 3252149 Fix casing of 'Qt' in docs, comments and user-visible strings.
| * Fix casing of 'Qt' in docs, comments and user-visible strings.Stephen Kelly2012-08-281-1/+1
| | | | | | | | | | QT (cue-tea) is Apple QuickTime. Qt (cute) is the C++ framework.
* | Fix errors detecting Qt4 on Windows 8.Clinton Stimpson2012-08-241-1/+1
|/ | | | Thanks to Petr Baloun for the patch.
* Merge topic 'qt4_use_modules'David Cole2012-08-201-0/+11
|\ | | | | | | | | 1420691 Add new qt4_use_modules function.
| * Add new qt4_use_modules function.Stephen Kelly2012-08-191-0/+11
| |
* | FindQt4: Give precedence to QTDIR environment variable, if set.Clinton Stimpson2012-08-161-5/+5
| | | | | | | | | | | | | | | | Remove old search paths that aren't needed. Keep using PATHS instead of HINTS because a Windows machine may have a different Qt in its PATH and putting QTDIR and the registry entry ahead of PATH could cause apps to fail when run.
* | FindQt4: Give precedence to QTDIR environment variable, if set.Clinton Stimpson2012-08-161-1/+1
| |
* | Fix regex for qt minor version.Clinton Stimpson2012-08-161-1/+1
|/ | | | Thanks to Dubrovskiy Viacheslav and Sergei Epifanov for patch.
* Remove CMake-language block-end command argumentsKitware Robot2012-08-131-92/+92
| | | | | | | | | | | | | | | | | Ancient versions of CMake required else(), endif(), and similar block termination commands to have arguments matching the command starting the block. This is no longer the preferred style. Run the following shell code: for c in else endif endforeach endfunction endmacro endwhile; do echo 's/\b'"$c"'\(\s*\)(.\+)/'"$c"'\1()/' done >convert.sed && git ls-files -z -- bootstrap '*.cmake' '*.cmake.in' '*CMakeLists.txt' | egrep -z -v '^(Utilities/cm|Source/kwsys/)' | egrep -z -v 'Tests/CMakeTests/While-Endwhile-' | xargs -0 sed -i -f convert.sed && rm convert.sed
* Convert CMake-language commands to lower caseKitware Robot2012-08-131-420/+420
| | | | | | | | | | | | | | | | | Ancient CMake versions required upper-case commands. Later command names became case-insensitive. Now the preferred style is lower-case. Run the following shell code: cmake --help-command-list | grep -v "cmake version" | while read c; do echo 's/\b'"$(echo $c | tr '[:lower:]' '[:upper:]')"'\(\s*\)(/'"$c"'\1(/g' done >convert.sed && git ls-files -z -- bootstrap '*.cmake' '*.cmake.in' '*CMakeLists.txt' | egrep -z -v '^(Utilities/cm|Source/kwsys/)' | xargs -0 sed -i -f convert.sed && rm convert.sed
* Remove trailing whitespace from most CMake and C/C++ codeKitware Robot2012-08-131-56/+56
| | | | | | | | | | | | | | | | | Our Git commit hooks disallow modification or addition of lines with trailing whitespace. Wipe out all remnants of trailing whitespace everywhere except third-party code. Run the following shell code: git ls-files -z -- \ bootstrap doxygen.config '*.readme' \ '*.c' '*.cmake' '*.cpp' '*.cxx' \ '*.el' '*.f' '*.f90' '*.h' '*.in' '*.in.l' '*.java' \ '*.mm' '*.pike' '*.py' '*.txt' '*.vim' | egrep -z -v '^(Utilities/cm|Source/(kwsys|CursesDialog/form)/)' | egrep -z -v '^(Modules/CPack\..*\.in)' | xargs -0 sed -i 's/ \+$//'
* Fix typo direcotry -> directory (and similar) [#13444]Rolf Eike Beer2012-07-301-1/+1
|
* FindQt4: extend documentationRolf Eike Beer2012-06-201-6/+19
| | | | | -refer to AUTOMOC from QT4_AUTOMOC -mention how source file properties influence QT4_ADD_DBUS_INTERFACE
* Merge topic 'qt4-phonon-backend'David Cole2012-06-051-1/+5
|\ | | | | | | | | ad7c80c Added conditional for the phonon backend plugin.
| * Added conditional for the phonon backend plugin.Kurtis Nusbaum2012-05-291-1/+5
| | | | | | | | If on APPLE, the phonon backend plugin is set to phonon_qt7. If on WIN32, the phonon backend plugin is set to phonon_ds9. I did not add any for generic UNIXes as they could have a whole host of things. A more comprehensive script would actually attempt to detect which phonon plugins were installed. However, this is a simple fix for now that will work for most people.
* | Fix the number variable comparison when Qt is not found.Stephen Kelly2012-05-031-1/+1
| |
* | Abort FindQt4.cmake if Qt 5 is found.David Faure2012-05-031-4/+16
|/
* FindQt4: clarify warning message about incorrect Qt installation.Clinton Stimpson2012-02-091-2/+3
| | | | | Fixes bug #12915. Thanks Laurent Rineau and Brad King for input.
* Add QT_LIBRARIES_PLUGINS variable to UseQt4.Mike McQuaid2011-10-031-0/+8
|
* qt4: also find QtUiTools when cross compiling with mingw.Clinton Stimpson2011-08-291-3/+4
|
* Remove C compiler requirement from FindQt4.cmakeClinton Stimpson2011-07-281-7/+7
| | | | | Use the new check_cxx_symbol_exists instead of check_symbol_exists. Also remove a debug message from CheckSymbolExists.cmake.
* Merge topic 'qt4-apple-framework-fix'Brad King2011-07-261-13/+13
|\ | | | | | | | | 702538e Qt4: Fix reference of undefined variable when detecting frameworks on Mac OS X
| * Qt4: Fix reference of undefined variable when detecting frameworks on Mac OS XClinton Stimpson2011-07-251-13/+13
| |
* | Add qt4/QtCore to help find Qt headers when cross-compiling.Clinton Stimpson2011-07-221-1/+1
|/
* Add imported targets support for frameworks on Mac.Clinton Stimpson2011-06-131-23/+24
|
* When cross compiling, don't double-root paths when using find_*.Markus Rathgeb2011-03-101-34/+34
|
* Fix regression in 43cb9b8.Clinton Stimpson2011-02-241-0/+5
| | | | Put back some code for setting the QT_VERSION_* variables that wasn't supposed to be removed.
* Merge topic 'qt4-fphsa'Brad King2011-02-221-133/+52
|\ | | | | | | | | | | | | 7a1027a When checking find_package() components, special case qtmain. 4c1c358 FindQt4: Include builtin FindPackageHandleStandardArgs directly 43cb9b8 Change to use fphsa to check required variables and version.
| * When checking find_package() components, special case qtmain.Clinton Stimpson2011-02-041-1/+7
| | | | | | | | | | Its just a library on Windows only. Fixes bug #11791.
| * FindQt4: Include builtin FindPackageHandleStandardArgs directlyBrad King2011-01-201-1/+1
| | | | | | | | | | Apply to FindQt4 change from commit b0118402 (Use absolute path to FindPackageHandleStandardArgs.cmake everywhere, 2010-09-28).
| * Change to use fphsa to check required variables and version.Clinton Stimpson2011-01-151-133/+46
| | | | | | | | | | Also, set the required variables based on components, if specified. Also, don't make finding uic required if not using QtGui.
* | Fix issues with find_path() for QtCore include dir on Mac. Fixes 11868.Clinton Stimpson2011-02-191-4/+21
| |
* | Replace exec_program with execute_process for qmake queries.Clinton Stimpson2011-01-181-1/+4
|/
* Add support for using static/dynamic Qt plugins.Clinton Stimpson2011-01-011-9/+83
|
* Fix regression in 2dae2f1 which added find of Qt imports dir.Clinton Stimpson2010-10-151-2/+2
|
* Find imports dir in Qt 4.7Clinton Stimpson2010-10-091-37/+36
|