summaryrefslogtreecommitdiffstats
path: root/Modules/Qt4Macros.cmake
Commit message (Collapse)AuthorAgeFilesLines
* Qt4Macros: add some quotes to prevent damage from spaces in the pathsRolf Eike Beer2012-06-201-17/+17
|
* Qt4Macros: improve basename extraction in QT4_ADD_DBUS_INTERFACESRolf Eike Beer2012-06-201-1/+2
| | | | | | -convert the filename to lowercase before the extraction, this allows this to work even if the filename as uppercase ".XML" extension -use get_filename_component(... NAME) to strip the path
* Qt4Macros: Added support for generated resource filesTobias Bieniek2012-05-291-16/+24
| | | | | | | | | | Using the QT4_ADD_RESOURCES() macro required the resource file to exist already for dependency scanning. This prevented the use of resource files that are generated by cmake because it needs the file before resolving the dependency. This patch adds support for generated resource files by not scanning the resource file for dependencies if it doesn't exist yet. The add_custom_command() to generate the resource file should add the dependencies on the files used by the resource file.
* FindQt4: Add include directories for lupdate.Clinton Stimpson2012-02-091-1/+7
| | | | | Fixes bug #12644. Thanks Bernd Lörwald for partial patch.
* Fix path quoting in Qt4 macrosPierre-Francois Laquerre2011-12-041-9/+9
| | | | | | | | Adding VERBATIM to the ADD_CUSTOM_COMMAND calls in the qt4 macros ensures that paths are properly quoted when passed to the shell. This fixes issues when building projects that contained paths with special characters (according to /bin/sh), such as parentheses or spaces.
* Add features from KDE for arguments to qdbusxml2cpp.Stephen Kelly2011-09-051-3/+16
|
* Speed up creation of parameters file for moc custom command.Clinton Stimpson2011-03-101-4/+2
| | | | Thanks A. Saratow for patch.
* allow absolute paths for dbus interface.Clinton Stimpson2010-12-231-1/+9
|
* Merge topic 'moc-includes-regex'David Cole2010-11-231-4/+4
|\ | | | | | | | | 35b91ac Fix regex for moc includes when looking for frameworks.
| * Fix regex for moc includes when looking for frameworks.Clinton Stimpson2010-08-021-4/+4
| |
* | Force cmake to run again when qrc dependency scanning needs to happen.Clinton Stimpson2010-10-151-1/+6
| |
* | Make sure moc parameters file goes in binary directory.Clinton Stimpson2010-08-241-4/+7
| | | | | | | | | | | | Fix bug 11120. Parameters files previously went into source directory when qt4_generate_moc() was given relative paths. Also simplified some logic for absolute paths.
* | Modules: Fix spelling 'To distributed' -> 'To distribute'Todd Gamblin2010-08-091-1/+1
|/
* Revert "Include relative path in generated qrc and uic files. Fixes #10413."Clinton Stimpson2010-04-081-2/+2
| | | | This reverts commit 108090fde96916ba666f035d1e260f036af5b31e.
* Include relative path in generated qrc and uic files. Fixes #10413.Clinton Stimpson2010-03-171-2/+2
|
* Split some logic of FindQt4.cmake into separate files, which are included ↵Alexander Neundorf2009-11-151-0/+399
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