-
Notifications
You must be signed in to change notification settings - Fork 103
/
fetchdeps.cmake
73 lines (69 loc) · 3.29 KB
/
fetchdeps.cmake
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
# Fetch CoreCLR sources if necessary
if ("${CORECLR_DIR}" STREQUAL "")
set(CORECLR_DIR ${CMAKE_CURRENT_SOURCE_DIR}/.coreclr)
find_package(Git REQUIRED)
if (EXISTS "${CORECLR_DIR}/.git/config")
execute_process(
COMMAND ${GIT_EXECUTABLE} config remote.origin.fetch "+refs/heads/*:refs/remotes/origin/*"
WORKING_DIRECTORY ${CORECLR_DIR})
execute_process(
COMMAND ${GIT_EXECUTABLE} fetch --progress --depth 1 origin "${CORECLR_BRANCH}"
WORKING_DIRECTORY ${CORECLR_DIR}
RESULT_VARIABLE retcode)
if (NOT "${retcode}" STREQUAL "0")
message(FATAL_ERROR "Fatal error when fetching ${CORECLR_BRANCH} branch")
endif()
execute_process(
COMMAND ${GIT_EXECUTABLE} checkout "${CORECLR_BRANCH}"
WORKING_DIRECTORY ${CORECLR_DIR}
RESULT_VARIABLE retcode)
if (NOT "${retcode}" STREQUAL "0")
message(FATAL_ERROR "Fatal error when cheking out ${CORECLR_BRANCH} branch")
endif()
else()
if (IS_DIRECTORY "${CORECLR_DIR}")
file(REMOVE_RECURSE "${CORECLR_DIR}")
endif()
execute_process(
COMMAND ${GIT_EXECUTABLE} clone --progress --depth 1 https://github.com/dotnet/runtime "${CORECLR_DIR}" -b "${CORECLR_BRANCH}"
WORKING_DIRECTORY ${CMAKE_CURRENT_SOURCE_DIR}
RESULT_VARIABLE retcode)
if (NOT "${retcode}" STREQUAL "0")
message(FATAL_ERROR "Fatal error when cloning coreclr sources")
endif()
endif()
set(CORECLR_DIR ${CMAKE_CURRENT_SOURCE_DIR}/.coreclr/src/coreclr)
endif()
# Fetch .NET SDK binaries if necessary
if ("${DOTNET_DIR}" STREQUAL "" AND ${BUILD_MANAGED})
set(DOTNET_DIR ${CMAKE_CURRENT_SOURCE_DIR}/.dotnet)
if (WIN32)
execute_process(
COMMAND powershell -Command "[Net.ServicePointManager]::SecurityProtocol = [Net.SecurityProtocolType]::Tls12 ; (new-object System.Net.WebClient).DownloadFile('https://dot.net/v1/dotnet-install.ps1', '${CMAKE_CURRENT_BINARY_DIR}/dotnet-install.ps1')"
WORKING_DIRECTORY ${CMAKE_CURRENT_SOURCE_DIR}
RESULT_VARIABLE retcode)
if (NOT "${retcode}" STREQUAL "0")
message(FATAL_ERROR "Fatal error when downloading dotnet install script")
endif()
if (CLR_CMAKE_PLATFORM_ARCH_I386)
set(NETSDKARCH "x86")
else()
set(NETSDKARCH "x64")
endif()
execute_process(
COMMAND powershell -File "${CMAKE_CURRENT_BINARY_DIR}/dotnet-install.ps1" -Channel "${DOTNET_CHANNEL}" -InstallDir "${DOTNET_DIR}" -Architecture ${NETSDKARCH} -Verbose
WORKING_DIRECTORY ${CMAKE_CURRENT_SOURCE_DIR}
RESULT_VARIABLE retcode)
if (NOT "${retcode}" STREQUAL "0")
message(FATAL_ERROR "Fatal error when installing dotnet")
endif()
else()
execute_process(
COMMAND bash -c "curl -sSL \"https://dot.net/v1/dotnet-install.sh\" | bash /dev/stdin --channel \"${DOTNET_CHANNEL}\" --install-dir \"${DOTNET_DIR}\" --verbose"
WORKING_DIRECTORY ${CMAKE_CURRENT_SOURCE_DIR}
RESULT_VARIABLE retcode)
if (NOT "${retcode}" STREQUAL "0")
message(FATAL_ERROR "Fatal error when installing dotnet")
endif()
endif()
endif()