summaryrefslogtreecommitdiffstats
path: root/Source/cmQtAutoGeneratorRcc.h
Commit message (Collapse)AuthorAgeFilesLines
* Autogen: Detect rcc feature once during configurationSebastian Holtermann2017-11-191-1/+1
| | | | | | | | We used to detect the `rcc` features before every `rcc` list invocation wich resulted in `rcc` be called twice for every listing operation. Now we detect the `rcc` list capabilities once during configuration and pass it to the cmake_autorcc target in the info file.
* Autogen: Add and use cmQtAutoGenerator base classSebastian Holtermann2017-11-191-37/+3
| | | | | | Adds the new base class `cmQtAutoGenerator` which contains common variables and methods used by `cmQtAutoGeneratorMocUic` and `cmQtAutoGeneratorRcc`.
* Autogen: Introduce standalone RCC generator classSebastian Holtermann2017-11-191-0/+90
Introduces the standalone RCC generator class `cmQtAutoGeneratorRcc`. Every instance of `cmQtAutoGeneratorRcc` class handles the `rcc` invocation for a single `.qrc` file. The class will be used in the future to allow parallel `.qrc` file processing by calling `cmake -E cmake_autorcc <INFO_FILE> <CONFIG>`.