diff options
author | Brad King <brad.king@kitware.com> | 2022-06-13 19:27:34 (GMT) |
---|---|---|
committer | Brad King <brad.king@kitware.com> | 2022-06-13 19:27:34 (GMT) |
commit | d084718eb93c1426393d574587f11373aaa7d94a (patch) | |
tree | c427290bb900e7a9f9737028149e387e8e405eac /Utilities/Release | |
parent | 7a21173b0eda59959b12d2e878e54f0b90d68b1d (diff) | |
download | CMake-d084718eb93c1426393d574587f11373aaa7d94a.zip CMake-d084718eb93c1426393d574587f11373aaa7d94a.tar.gz CMake-d084718eb93c1426393d574587f11373aaa7d94a.tar.bz2 |
Utilities/Release: Add windows-arm64 package to file table
Diffstat (limited to 'Utilities/Release')
-rw-r--r-- | Utilities/Release/files-v1.json.in | 12 | ||||
-rw-r--r-- | Utilities/Release/files-v1.rst | 2 |
2 files changed, 13 insertions, 1 deletions
diff --git a/Utilities/Release/files-v1.json.in b/Utilities/Release/files-v1.json.in index aa6b15d..2f860d2 100644 --- a/Utilities/Release/files-v1.json.in +++ b/Utilities/Release/files-v1.json.in @@ -84,6 +84,18 @@ "name": "cmake-@version@-windows-x86_64.zip" }, { + "os": ["windows", "Windows"], + "architecture": ["arm64"], + "class": "installer", + "name": "cmake-@version@-windows-arm64.msi" + }, + { + "os": ["windows", "Windows"], + "architecture": ["arm64"], + "class": "archive", + "name": "cmake-@version@-windows-arm64.zip" + }, + { "os": ["source"], "architecture": [], "class": "archive", diff --git a/Utilities/Release/files-v1.rst b/Utilities/Release/files-v1.rst index ceebecc..f0064e8 100644 --- a/Utilities/Release/files-v1.rst +++ b/Utilities/Release/files-v1.rst @@ -76,7 +76,7 @@ The members are: Source packages have an empty list of architectures (``[]``). Binary packages have a non-empty list of architectures, with at least one name matching the output of ``uname -m`` on corresponding hosts. - On Windows, architecture names include ``x86_64`` and ``i386``. + On Windows, architecture names include ``x86_64``, ``i386``, and ``arm64``. On macOS, universal binary packages list all architectures, e.g. ``["arm64","x86_64"]``. |