-
-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
1 changed file
with
117 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,117 @@ | ||
# Download specified nightly binary archive and extract to home directory | ||
# | ||
# get latest nightly | ||
# cmake -P nightly.cmake | ||
# | ||
# specify date | ||
# cmake -Ddate=20240102 -P nightly.cmake | ||
# | ||
# specify install prefix | ||
# cmake -Dprefix=~/cmake -P nightly.cmake | ||
|
||
cmake_minimum_required(VERSION 3.21) | ||
|
||
include(FetchContent) | ||
|
||
option(CMAKE_TLS_VERIFY "Verify TLS certificates" ON) | ||
|
||
if(NOT date) | ||
string(TIMESTAMP date "%Y%m%d") | ||
math(EXPR date "${date} - 1") | ||
endif() | ||
|
||
# rolling window for dates one year. Updates to new CMake version when first release occurs. | ||
if(date GREATER 20231002) | ||
set(version "3.28") | ||
elseif(date GREATER 20230605) | ||
set(version "3.27") | ||
elseif(date GREATER 20230131) | ||
set(version "3.26") | ||
else() | ||
set(version "3.25") | ||
endif() | ||
|
||
set(s "cmake-${version}.${date}") | ||
|
||
if(NOT prefix) | ||
set(prefix "~/${s}") | ||
endif() | ||
|
||
file(REAL_PATH ${prefix} prefix EXPAND_TILDE) | ||
|
||
if(WIN32) | ||
set(os "windows") | ||
elseif(APPLE) | ||
set(os "macos") | ||
else() | ||
set(os "linux") | ||
endif() | ||
|
||
|
||
function(cpu_arch) | ||
|
||
if(APPLE) | ||
set(arch "universal") | ||
elseif(WIN32) | ||
set(arch $ENV{PROCESSOR_ARCHITECTURE}) | ||
else() | ||
execute_process(COMMAND uname -m OUTPUT_VARIABLE arch OUTPUT_STRIP_TRAILING_WHITESPACE COMMAND_ERROR_IS_FATAL ANY) | ||
endif() | ||
|
||
if(NOT arch) | ||
message(FATAL_ERROR "Unknown arch") | ||
endif() | ||
|
||
# system arch to arch index | ||
string(TOLOWER ${arch} arch) | ||
if(WIN32) | ||
if(arch STREQUAL "x86") | ||
set(arch "i386") | ||
elseif(arch STREQUAL "amd64") | ||
set(arch "x86_64") | ||
endif() | ||
endif() | ||
|
||
set(arch ${arch} PARENT_SCOPE) | ||
|
||
endfunction(cpu_arch) | ||
|
||
cpu_arch() | ||
|
||
if(UNIX) | ||
set(suffix .tar.gz) | ||
else() | ||
set(suffix .zip) | ||
endif() | ||
|
||
set(pat ">(${s}-.*-${os}-${arch}${suffix})</a>") | ||
|
||
message(VERBOSE "${pat}") | ||
|
||
#if(NOT EXISTS index.html) | ||
file(DOWNLOAD "https://cmake.org/files/dev/" index.html INACTIVITY_TIMEOUT 15 TIMEOUT 60) | ||
#endif() | ||
|
||
file(STRINGS index.html lines REGEX "${pat}") | ||
string(REGEX MATCH "${pat}" line "${lines}") | ||
message(DEBUG "${lines}") | ||
message(DEBUG "${line}") | ||
if(NOT CMAKE_MATCH_COUNT GREATER 0) | ||
message(FATAL_ERROR "No binary available for date ${date} | ||
${lines} | ||
${line}" | ||
) | ||
endif() | ||
|
||
set(archive "${CMAKE_MATCH_1}") | ||
|
||
set(url "https://cmake.org/files/dev/${archive}") | ||
|
||
message(STATUS "${url} => ${prefix}") | ||
|
||
FetchContent_Populate(cmake | ||
URL ${url} | ||
TLS_VERIFY ${CMAKE_TLS_VERIFY} | ||
INACTIVITY_TIMEOUT 60 | ||
SOURCE_DIR ${prefix} | ||
) |