summaryrefslogtreecommitdiffstats
path: root/Tests/RunCMake/CMP0135
Commit message (Collapse)AuthorAgeFilesLines
* ExternalProject: Move more internal commands out of main fileCraig Scott2024-05-131-2/+2
| | | | | | | | | The commands moved to shared_internal_commands.cmake will soon be used directly by FetchContent, which cannot always include the full ExternalProject.cmake file (e.g. it may be used in CMake script mode). Issue: #21703
* FetchContent: Respect the CMP0135 policy settingCraig Scott2022-06-025-8/+49
| | | Fixes: #23560
* ExternalProject: Add DOWNLOAD_EXTRACT_TIMESTAMP option and policyKasper Laudrup2022-05-0410-0/+45
Add the option to keep the current filestamps when extracting an archive in ExternalProject_Add. Enabling this option makes the behavior consistent with how ExternalProject_Add is used when checking out code from revision control instead of an archive. Fixes: #22746