summaryrefslogtreecommitdiffstats
path: root/Source/cmQtAutoGenerators.cxx
Commit message (Collapse)AuthorAgeFilesLines
* cmAutogen: Rename method to InitializeAutogenTargetStephen Kelly2013-11-051-1/+1
| | | | This reflects better what it is doing.
* cmAutogen: Move autogen target creation to InitializeMocSourceFile.Stephen Kelly2013-11-051-67/+72
| | | | | | The SetupAutoGenerateTarget method will soon be invoked at a later time in a followup commit. We need to ensure that we create the utility autogen target early.
* cmAutogen: Extract some helper methods for autogen targets.Stephen Kelly2013-11-051-9/+21
| | | | These snippets will soon be needed from multiple methods.
* Add automatic rcc invocation for Qt.Stephen Kelly2013-10-241-0/+283
| | | | | This replaces the need to invoke qt4_add_resources by allowing adding the source .qrc file directly to the target sources.
* Add automatic uic invocation for Qt.Stephen Kelly2013-10-241-10/+381
| | | | | | | | | | | | The source files are already processed by cmQtAutomoc to look for moc includes, so extend that to also look for ui_ includes and find corresponding .ui files to process. This replaces the need to invoke qt4_wrap_ui(). As the ui files are not likely to be part of the SOURCES of the target, store the options associated with them separately in the cmMakefile for querying during the autogen run.
* Record which files are skipped by automoc.Stephen Kelly2013-10-241-12/+26
| | | | They may not be skipped by autouic.
* Add extra checks for the AUTOMOC target property.Stephen Kelly2013-10-241-14/+21
| | | | In an upcoming commit, this class will be used even if it is not set.
* Update output messages for generic use.Stephen Kelly2013-10-241-14/+14
|
* Rename RunAutomoc to RunAutogen.Stephen Kelly2013-10-241-2/+2
| | | | It will soon be used to process ui and rcc files too.
* Extract an SetupAutoMocTarget method.Stephen Kelly2013-10-241-48/+56
| | | | This class will soon gain methods for autouic and autorcc.
* Rename the AutomocInfo.cmake file to be more generic.Stephen Kelly2013-10-241-3/+3
|
* Move some makefile definitions up away from moc-specific code.Stephen Kelly2013-10-241-22/+21
|
* Add the AUTOGEN_TARGETS_FOLDER and obsolete AUTOMOC_TARGETS_FOLDER.Stephen Kelly2013-10-241-3/+8
|
* Rename some variables to reflect broader scope.Stephen Kelly2013-10-241-8/+9
|
* Rename method to reflect generic use.Stephen Kelly2013-10-241-2/+2
|
* Rename local variable to reflect generic use.Stephen Kelly2013-10-241-8/+8
|
* Move variable set to where it is used.Stephen Kelly2013-10-241-2/+1
|
* Rename the cmake_automoc command to cmake_autogen.Stephen Kelly2013-10-241-1/+1
| | | | | | There is no need for a "cmake_automoc" backward compatibility command because it is internal, undocumented, and only executed from a matching version of cmake.
* Rename the cmQtAutomoc class to cmQtAutoGenerators.Stephen Kelly2013-10-241-0/+1321
It will be extended to process .ui and .qrc files too.