Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | OpenBSD: Add paths for Qt3/Qt4 | Amit Kulkarni | 2012-12-05 | 1 | -0/+14 |
| | | | | | | | 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. | ||||
* | Find* (and some other): use ${CMAKE_CURRENT_LIST_DIR} in include() | Rolf Eike Beer | 2012-11-04 | 1 | -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 | ||||
* | FindQt: add some more places to look for Qt3 | Rolf Eike Beer | 2012-10-24 | 1 | -1/+1 |
| | | | | Qt3 may be e.g. in /usr/lib64/qt-3 or in /usr/lib/qt3, too. | ||||
* | FindQt: improve version selection | Rolf Eike Beer | 2012-10-24 | 1 | -3/+7 |
| | | | | | | -make "find_package(Qt 3)" work -if DESIRED_QT_VERSION was set, but only the other Qt major version was found don't override the DESIRED_QT_VERSION set by the user | ||||
* | Fix casing of 'Qt' in docs, comments and user-visible strings. | Stephen Kelly | 2012-08-28 | 1 | -13/+13 |
| | | | | | QT (cue-tea) is Apple QuickTime. Qt (cute) is the C++ framework. | ||||
* | Remove CMake-language block-end command arguments | Kitware Robot | 2012-08-13 | 1 | -25/+25 |
| | | | | | | | | | | | | | | | | | 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 case | Kitware Robot | 2012-08-13 | 1 | -83/+83 |
| | | | | | | | | | | | | | | | | | 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++ code | Kitware Robot | 2012-08-13 | 1 | -5/+5 |
| | | | | | | | | | | | | | | | | | 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/ \+$//' | ||||
* | Modules: Fix spelling 'To distributed' -> 'To distribute' | Todd Gamblin | 2010-08-09 | 1 | -1/+1 |
| | |||||
* | Convert CMake find-modules to BSD License | Brad King | 2009-09-28 | 1 | -0/+12 |
| | | | | | | | This adds copyright/license notification blocks CMake's find-modules. Many of the modules had no notices at all. Some had notices referring to the BSD license already. This commit normalizes existing notices and adds missing notices. | ||||
* | ENH: change to fatal error | Bill Hoffman | 2006-01-25 | 1 | -1/+1 |
| | |||||
* | ENH: add qt quiet stuff | Bill Hoffman | 2006-01-09 | 1 | -0/+4 |
| | |||||
* | ENH: cleanups | Ken Martin | 2005-12-15 | 1 | -3/+4 |
| | |||||
* | ENH: add documentation support for modules | Bill Hoffman | 2005-12-14 | 1 | -11/+12 |
| | |||||
* | ENH: if qt4 qmake is found then set QT_QMAKE_EXECUTABLE to that value so ↵ | Bill Hoffman | 2005-09-14 | 1 | -0/+1 |
| | | | | that the same one will be used in FindQt4.cmake | ||||
* | ENH: fix if statement | Bill Hoffman | 2005-09-13 | 1 | -1/+1 |
| | |||||
* | ENH: add docs for QT_REQUIRED | Bill Hoffman | 2005-09-13 | 1 | -0/+2 |
| | |||||
* | ENH: more findqt fixes | Bill Hoffman | 2005-09-13 | 1 | -5/+5 |
| | |||||
* | ENH: add new place to search for qt4 in registry | Bill Hoffman | 2005-09-12 | 1 | -0/+1 |
| | |||||
* | ENH: fix typo | Bill Hoffman | 2005-09-12 | 1 | -2/+0 |
| | |||||
* | ENH: add a better message | Bill Hoffman | 2005-09-12 | 1 | -1/+3 |
| | |||||
* | ENH: add some messages not errors for findqt | Bill Hoffman | 2005-09-12 | 1 | -0/+4 |
| | |||||
* | ENH: make sure the correct qmake is used | Bill Hoffman | 2005-09-12 | 1 | -2/+2 |
| | |||||
* | ENH: only print errors if QT_REQUIRED is set | Bill Hoffman | 2005-09-11 | 1 | -1/+3 |
| | |||||
* | BUG: try to fix qt problems | Bill Hoffman | 2005-09-10 | 1 | -2/+6 |
| | |||||
* | ENH: clean up the find qt stuff some | Bill Hoffman | 2005-09-10 | 1 | -10/+13 |
| | |||||
* | ENH: try to fix this find qt stuff | Bill Hoffman | 2005-09-09 | 1 | -2/+123 |
| | |||||
* | ENH: make FindQt default to qt3 and print a message, and add ↵ | Bill Hoffman | 2005-09-09 | 1 | -289/+3 |
| | | | | CheckQtInstalled.cmake | ||||
* | ENH: fixed up qt stuff from Clinton Stimpson | Bill Hoffman | 2005-08-10 | 1 | -10/+10 |
| | |||||
* | ENH: add advanced values | Bill Hoffman | 2005-08-02 | 1 | -0/+1 |
| | |||||
* | ENH: make sure qmake is on the machine before running it | Bill Hoffman | 2005-07-20 | 1 | -4/+7 |
| | |||||
* | ENH: fix qt bug | Bill Hoffman | 2005-07-18 | 1 | -1/+1 |
| | |||||
* | ENH: fix hard coded include from patch | Bill Hoffman | 2005-07-15 | 1 | -2/+2 |
| | |||||
* | ENH: fix hard coded include from patch | Bill Hoffman | 2005-07-15 | 1 | -2/+2 |
| | |||||
* | ENH: fix hard coded include from patch | Bill Hoffman | 2005-07-15 | 1 | -4/+2 |
| | |||||
* | ENH: add new qt stuff from warfield@bwh.harvard.edu, thanks | Bill Hoffman | 2005-07-15 | 1 | -236/+276 |
| | |||||
* | ENH: Added search locations for a FreeBSD location. Contributed by ↵ | Brad King | 2005-06-07 | 1 | -0/+6 |
| | | | | Alexander Neundorf. | ||||
* | ENH: Removing extra 64-bit search paths. They are now constructed ↵ | Brad King | 2005-04-07 | 1 | -15/+0 |
| | | | | automatically from the paths listed. | ||||
* | ENH: Adding support for 64-bit library paths. Contributed by Peter Vanroose. | Brad King | 2005-04-07 | 1 | -0/+15 |
| | |||||
* | FIX: fix for bug 1409 | Bill Hoffman | 2005-02-17 | 1 | -3/+3 |
| | |||||
* | ENH: Use FIND_PACKAGE instead of INCLUDE(Find... | Andy Cedilnik | 2004-09-10 | 1 | -2/+2 |
| | |||||
* | ENH: Cleanup. Use relative path to modules | Andy Cedilnik | 2004-08-27 | 1 | -2/+2 |
| | |||||
* | ENH: remove verbose QT message | Bill Hoffman | 2004-08-05 | 1 | -12/+0 |
| | |||||
* | BUG: put back flags to maintain backwards compatibility | Bill Hoffman | 2004-07-22 | 1 | -0/+14 |
| | |||||
* | BUG: These regular expressions were wrong because \\t does not match tab. ↵ | Andy Cedilnik | 2004-07-13 | 1 | -2/+4 |
| | | | | Also, this fix prevents whole file to be dumped to the cache | ||||
* | merge in fixes from neundorf at kde org, bug 869 | Bill Hoffman | 2004-07-09 | 1 | -62/+168 |
| | |||||
* | clean up commands so they don't need extra variable | Bill Hoffman | 2004-06-16 | 1 | -10/+0 |
| | |||||
* | ENH: look for qtmoc in some other places | Bill Hoffman | 2004-05-20 | 1 | -3/+9 |
| | |||||
* | ENH: Add QT_ASSISTANTCLIENT_LIBRARY support. Fixes Bug #425 - Suggsted mod ↵ | Andy Cedilnik | 2003-12-29 | 1 | -5/+23 |
| | | | | to FindQt.cmake to handle qassistantclient.lib | ||||
* | ENH: Make it work for QT 2.3 non commercial on windows | Andy Cedilnik | 2003-08-01 | 1 | -1/+3 |
| |