summaryrefslogtreecommitdiffstats
path: root/Tests/QtAutogen/autorcc_depends
Commit message (Collapse)AuthorAgeFilesLines
* QtAutogen: Workaround rcc CRCRLF newlines on Windows (#15459)Brad King2015-04-163-2/+2
| | | | | | | | | The 'rcc --list' operation may print newlines of the form CRCRLF, so strip any trailing CR characters found on each line. Update the Tests/QtAutogen test to use a resource named in a subdirectory. This causes 'rcc --list' to display a blank line and tests that it is correctly filtered out.
* Tests/QtAutogen: Avoid touching files in the source treeBrad King2015-04-163-1/+4
|
* Tests/QtAutogen: Require CMake 3.1 to set policies everywhereBrad King2015-04-161-1/+1
| | | | | We want CMP0020 set in the autorcc_depends test. Also the test should now only run when we can support per-config source files.
* QtAutogen: Regenerate qrc files if their input changes (#15074)Stephen Kelly2014-10-244-0/+35
Get dependencies from the output of ``rcc --list`` if using Qt 5. Otherwise process the file in the same way as the qt4_add_resources macro. This does not work for RCC files which are generated. The cmake_autogen build step is implemented as a PRE_BUILD step of the target currently if possible, rather than a standalone custom target. This is to keep the number of (synthesized) custom targets that appear in the UI low, but in some cases it is necessary to fall back to a full custom target. Fall back to a full custom target for the VS builds if autorcc is used.