File tree Expand file tree Collapse file tree 5 files changed +27
-19
lines changed Expand file tree Collapse file tree 5 files changed +27
-19
lines changed Original file line number Diff line number Diff line change 1
- # Copyright 2019 Google
1
+ # Copyright 2019 Google LLC
2
2
#
3
3
# Licensed under the Apache License, Version 2.0 (the "License");
4
4
# you may not use this file except in compliance with the License.
@@ -18,17 +18,18 @@ if(TARGET curl OR NOT DOWNLOAD_CURL)
18
18
return ()
19
19
endif ()
20
20
21
+ set (version 7_58_0 )
22
+
21
23
ExternalProject_Add (
22
24
curl
23
25
24
- GIT_REPOSITORY https://github.com/curl/curl.git
25
- GIT_TAG curl-7_58_0
26
- GIT_SHALLOW 1
26
+ DOWNLOAD_DIR ${FIREBASE_DOWNLOAD_DIR}
27
+ URL https://github.com/curl/curl/archive/curl-${version}.tar.gz
27
28
28
29
PREFIX ${PROJECT_BINARY_DIR}
29
30
30
31
CONFIGURE_COMMAND ""
31
32
BUILD_COMMAND ""
32
33
INSTALL_COMMAND ""
33
34
TEST_COMMAND ""
34
- )
35
+ )
Original file line number Diff line number Diff line change 1
- # Copyright 2018 Google
1
+ # Copyright 2018 Google LLC
2
2
#
3
3
# Licensed under the Apache License, Version 2.0 (the "License");
4
4
# you may not use this file except in compliance with the License.
@@ -18,17 +18,19 @@ if(TARGET flatbuffers OR NOT DOWNLOAD_FLATBUFFERS)
18
18
return ()
19
19
endif ()
20
20
21
+ set (version v1.10.0 )
22
+
21
23
ExternalProject_Add (
22
24
flatbuffers
23
25
24
- GIT_REPOSITORY https://github.com/google/flatbuffers.git
25
- GIT_TAG v1.10.0
26
- GIT_SHALLOW 1
26
+ DOWNLOAD_DIR ${FIREBASE_DOWNLOAD_DIR}
27
+ DOWNLOAD_NAME flatbuffers-${version}.tar.gz
28
+ URL https://github.com/google/flatbuffers/archive/${version}.tar.gz
27
29
28
30
PREFIX ${PROJECT_BINARY_DIR}
29
31
30
32
CONFIGURE_COMMAND ""
31
33
BUILD_COMMAND ""
32
34
INSTALL_COMMAND ""
33
35
TEST_COMMAND ""
34
- )
36
+ )
Original file line number Diff line number Diff line change 1
- # Copyright 2019 Google
1
+ # Copyright 2019 Google LLC
2
2
#
3
3
# Licensed under the Apache License, Version 2.0 (the "License");
4
4
# you may not use this file except in compliance with the License.
@@ -18,12 +18,14 @@ if(TARGET libuv OR NOT DOWNLOAD_LIBUV)
18
18
return ()
19
19
endif ()
20
20
21
+ set (version v1.33.1 )
22
+
21
23
ExternalProject_Add (
22
24
libuv
23
25
24
- GIT_REPOSITORY https://github.com/libuv/libuv
25
- GIT_TAG v1.33.1
26
- GIT_SHALLOW 1
26
+ DOWNLOAD_DIR ${FIREBASE_DOWNLOAD_DIR}
27
+ DOWNLOAD_NAME libuv-${version}.tar.gz
28
+ URL https://github.com/libuv/libuv/archive/${version}.tar.gz
27
29
28
30
PREFIX ${PROJECT_BINARY_DIR}
29
31
Original file line number Diff line number Diff line change 1
- # Copyright 2019 Google
1
+ # Copyright 2019 Google LLC
2
2
#
3
3
# Licensed under the Apache License, Version 2.0 (the "License");
4
4
# you may not use this file except in compliance with the License.
@@ -18,16 +18,19 @@ if(TARGET uWebSockets OR NOT DOWNLOAD_UWEBSOCKETS)
18
18
return ()
19
19
endif ()
20
20
21
+ set (commit 4d94401b9c98346f9afd838556fdc7dce30561eb )
22
+
21
23
ExternalProject_Add (
22
24
uWebSockets
23
25
24
- GIT_REPOSITORY https://github.com/uNetworking/uWebSockets
25
- GIT_TAG 4d94401b9c98346f9afd838556fdc7dce30561eb
26
+ DOWNLOAD_DIR ${FIREBASE_DOWNLOAD_DIR}
27
+ DOWNLOAD_NAME uWebSockets-${commit}.tar.gz
28
+ URL https://github.com/uNetworking/uWebSockets/archive/${commit}.tar.gz
26
29
27
30
PREFIX ${PROJECT_BINARY_DIR}
28
31
29
32
CONFIGURE_COMMAND ""
30
33
BUILD_COMMAND ""
31
34
INSTALL_COMMAND ""
32
35
TEST_COMMAND ""
33
- )
36
+ )
Original file line number Diff line number Diff line change @@ -32,4 +32,4 @@ ExternalProject_Add(
32
32
BUILD_COMMAND ""
33
33
INSTALL_COMMAND ""
34
34
TEST_COMMAND ""
35
- )
35
+ )
You can’t perform that action at this time.
0 commit comments