Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | Autogen: Revert "Add timestamp file for CMAKE_GLOBAL_AUTORCC_TARGET" | Orkun Tokdemir | 2024-07-10 | 1 | -16/+0 |
| | | | | | | | | | | | In the commit 8d99e71b, a new timestamp file was added to prevent unneeded `AUTORCC` triggering after successful builds when `CMAKE_GLOBAL_AUTORCC_TARGET` is ON. This caused a regression that configuration fails when multiple `.qrc` files are added to a target. This commits reverts 8d99e71b. Issue: #26059 Fixes: #26126 | ||||
* | Autogen: Add timestamp file for CMAKE_GLOBAL_AUTORCC_TARGET | Orkun Tokdemir | 2024-06-26 | 1 | -0/+16 |
| | | | | | | | | | | | | | | | | When `CMAKE_GLOBAL_AUTORCC_TARGET` is ON and qrc files are not generated, `<target_name>_arcc_data` is always dirty. So this commit adds a timestamp file which depens on what `<target_name>_arcc_data` depends before and ``<target_name>_arcc_data` depends the timestamp file. The dependency graph before (qrcFile, InfoFile) -> _arcc_target The dependency graph after (qrcFile, InfoFile) -> global_rcc_timestamp ->_arcc_target Fixes: #26059 | ||||
* | Autogen: Separate RunCMake.AutogenQtX tests | Orkun Tokdemir | 2024-06-24 | 5 | -0/+68 |
The RunCMake.AutogenQtX tests occasionally time out so separate `RunCMake.AutogenQtX` tests. Example: https://open.cdash.org/tests/1583599782 |