summaryrefslogtreecommitdiffstats
path: root/Modules/ExternalProject/cfgcmd.txt.in
diff options
context:
space:
mode:
authorCraig Scott <craig.scott@crascit.com>2021-02-04 20:32:58 (GMT)
committerCraig Scott <craig.scott@crascit.com>2021-02-04 20:33:38 (GMT)
commit4f3d1abbb4dca3d1e6b019471fa5d8be296492e3 (patch)
treef3614845c0e2c7c904cb0be116462f8d80f1af47 /Modules/ExternalProject/cfgcmd.txt.in
parent23aab9ecce264b7ea198fc9d36f382a4bb4fbe28 (diff)
downloadCMake-4f3d1abbb4dca3d1e6b019471fa5d8be296492e3.zip
CMake-4f3d1abbb4dca3d1e6b019471fa5d8be296492e3.tar.gz
CMake-4f3d1abbb4dca3d1e6b019471fa5d8be296492e3.tar.bz2
ExternalProject: Refactor pre-configure steps to support no-target uses
The mkdir, download, update and patch steps are used by FetchContent during the configure phase of the main build. Because these steps need a target, this has so far required a sub-build to be set up. The changes here factor out the preparation of the scripts from the creation of the targets, allowing future work to leverage these steps without a sub-build (see #21703). As part of the refactoring, some rationalisation of the stamp files, repository info files and script names was done to make things more consistent between download methods and step implementations. Every download method now records its own specific repository info in a file and that file is a dependency of the download step. The source directory is also written to that file, so if the SOURCE_DIR changes, the download will be retriggered (the existing implementation fails in this scenario). Each download method now also has just one driver script that implements the whole step (it may pull in other scripts to do its task though). The patch step gained support for USES_TERMINAL as a result of generalising the implementation for custom commands. Fixes: #21748
Diffstat (limited to 'Modules/ExternalProject/cfgcmd.txt.in')
-rw-r--r--Modules/ExternalProject/cfgcmd.txt.in1
1 files changed, 1 insertions, 0 deletions
diff --git a/Modules/ExternalProject/cfgcmd.txt.in b/Modules/ExternalProject/cfgcmd.txt.in
new file mode 100644
index 0000000..b3f09ef
--- /dev/null
+++ b/Modules/ExternalProject/cfgcmd.txt.in
@@ -0,0 +1 @@
+cmd='@cmd@'