summaryrefslogtreecommitdiffstats
path: root/Modules/AutoRccInfo.cmake.in
Commit message (Collapse)AuthorAgeFilesLines
* Autogen: Detect rcc feature once during configurationSebastian Holtermann2017-11-191-2/+2
| | | | | | | | 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: Switch to use custom commands for RCCSebastian Holtermann2017-11-191-0/+11
Instead of processing all `rcc` invocation requests in the _autogen target that calls `cmake -E cmake_autogen ...` once, use a dedicated custom command that calls `cmake -E cmake_autorcc ...` for each `.qrc` file. This allows parallel `.qrc` file processing and reduces the workload (and complexity) in the _autogen target. If only `AUTORCC` is enabled, the _autogen target won't be created at all since it is now used for `AUTOMOC` and `AUTOUIC` only. For `.qrc` files that are GENERATED a custom target is used instead of a custom command. Closes #17161