Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | DeployQt4: Include DESTDIR for some cpack generators. | Clinton Stimpson | 2012-08-16 | 1 | -2/+2 |
| | |||||
* | Convert CMake-language commands to lower case | Kitware Robot | 2012-08-13 | 1 | -2/+2 |
| | | | | | | | | | | | | | | | | | 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 | ||||
* | DeployQt4: workaround bug 13258 where ARGV1 is leaked into a sub function. | Clinton Stimpson | 2012-07-09 | 1 | -1/+1 |
| | |||||
* | DeployQt4: Add path to Qt dlls on Windows. | Clinton Stimpson | 2012-03-07 | 1 | -0/+6 |
| | |||||
* | Fix plugin installation issues. | Mike McQuaid | 2012-02-23 | 1 | -13/+27 |
| | |||||
* | Ensure libs are passed to BundleUtilities. | Mike McQuaid | 2012-02-21 | 1 | -2/+2 |
| | |||||
* | Fix bad plugin paths. | Mike McQuaid | 2012-02-21 | 1 | -13/+13 |
| | |||||
* | Fix mismatched arguments. | Mike McQuaid | 2012-02-21 | 1 | -1/+1 |
| | |||||
* | Don't use QT_LIBRARIES_PLUGINS by default. | Mike McQuaid | 2012-02-21 | 1 | -4/+0 |
| | | | | | | A lot of the libraries won't be found by default so will spit out all sorts of errors. Don't kill QT_LIBRARIES_PLUGINS altogether as it is sometimes useful. | ||||
* | Improve component support and output indentation. | Mike McQuaid | 2011-12-16 | 1 | -9/+13 |
| | |||||
* | Unset configurations variable when no build type. | Mike McQuaid | 2011-12-13 | 1 | -0/+2 |
| | |||||
* | Check QtCore without warning. | Mike McQuaid | 2011-11-14 | 1 | -1/+5 |
| | | | | | When debug and release versions of QtCore were available it printed a warning. This has been fixed. | ||||
* | Check plugin variables are defined before warning. | Mike McQuaid | 2011-11-01 | 1 | -3/+5 |
| | |||||
* | Don't resolve directories; are never relative. | Mike McQuaid | 2011-11-01 | 1 | -2/+0 |
| | |||||
* | Match fixup_qt4_executable with documentation. | Mike McQuaid | 2011-11-01 | 1 | -2/+3 |
| | |||||
* | Add DeployQt4 module. | Mike McQuaid | 2011-10-03 | 1 | -0/+274 |
Add a module that gives better support to BundleUtilities to handle Qt plugins and deploy Qt applications. |