mirror of
https://github.com/google/benchmark.git
synced 2025-04-03 16:10:58 +08:00
update googletest to latest release tag 1.11.0 (#1301)
* update googletest to latest release tag 1.11.0 * fix cmake builds to the same release
This commit is contained in:
parent
ab867074da
commit
1f99405076
@ -1,6 +1,7 @@
|
|||||||
workspace(name = "com_github_google_benchmark")
|
workspace(name = "com_github_google_benchmark")
|
||||||
|
|
||||||
load("@bazel_tools//tools/build_defs/repo:http.bzl", "http_archive")
|
load("@bazel_tools//tools/build_defs/repo:http.bzl", "http_archive")
|
||||||
|
load("@bazel_tools//tools/build_defs/repo:git.bzl", "git_repository")
|
||||||
|
|
||||||
http_archive(
|
http_archive(
|
||||||
name = "com_google_absl",
|
name = "com_google_absl",
|
||||||
@ -9,11 +10,10 @@ http_archive(
|
|||||||
urls = ["https://github.com/abseil/abseil-cpp/archive/20200225.2.tar.gz"],
|
urls = ["https://github.com/abseil/abseil-cpp/archive/20200225.2.tar.gz"],
|
||||||
)
|
)
|
||||||
|
|
||||||
http_archive(
|
git_repository(
|
||||||
name = "com_google_googletest",
|
name = "com_google_googletest",
|
||||||
strip_prefix = "googletest-3f0cf6b62ad1eb50d8736538363d3580dd640c3e",
|
remote = "https://github.com/google/googletest.git",
|
||||||
urls = ["https://github.com/google/googletest/archive/3f0cf6b62ad1eb50d8736538363d3580dd640c3e.zip"],
|
tag = "release-1.11.0",
|
||||||
sha256 = "8f827dd550db8b4fdf73904690df0be9fccc161017c9038a724bc9a0617a1bc8",
|
|
||||||
)
|
)
|
||||||
|
|
||||||
http_archive(
|
http_archive(
|
||||||
|
@ -38,7 +38,7 @@ else()
|
|||||||
ExternalProject_Add(
|
ExternalProject_Add(
|
||||||
googletest
|
googletest
|
||||||
GIT_REPOSITORY https://github.com/google/googletest.git
|
GIT_REPOSITORY https://github.com/google/googletest.git
|
||||||
GIT_TAG main
|
GIT_TAG "release-1.11.0"
|
||||||
PREFIX "${CMAKE_BINARY_DIR}"
|
PREFIX "${CMAKE_BINARY_DIR}"
|
||||||
STAMP_DIR "${CMAKE_BINARY_DIR}/stamp"
|
STAMP_DIR "${CMAKE_BINARY_DIR}/stamp"
|
||||||
DOWNLOAD_DIR "${CMAKE_BINARY_DIR}/download"
|
DOWNLOAD_DIR "${CMAKE_BINARY_DIR}/download"
|
||||||
|
Loading…
Reference in New Issue
Block a user