aboutsummaryrefslogtreecommitdiff
path: root/third_party/abseil-cpp/CMake/Googletest/CMakeLists.txt.in
diff options
context:
space:
mode:
authorAndy Hung <hunga@google.com>2020-10-28 22:16:47 +0000
committerGerrit Code Review <noreply-gerritcodereview@google.com>2020-10-28 22:16:47 +0000
commitaa2897cdcbeca872034af249eee55672c68d1d81 (patch)
tree35d73359fd09cc16d1fbb857909581bad75b765e /third_party/abseil-cpp/CMake/Googletest/CMakeLists.txt.in
parent3e1889fd3ec2121f051cded7fa3aaa946b442a6d (diff)
parentbb55342cbca1f67335f46ee07cdc1f30e4c3b140 (diff)
downloadwebrtc-aa2897cdcbeca872034af249eee55672c68d1d81.tar.gz
Merge "Import abseil-cpp to third_party"
Diffstat (limited to 'third_party/abseil-cpp/CMake/Googletest/CMakeLists.txt.in')
-rw-r--r--third_party/abseil-cpp/CMake/Googletest/CMakeLists.txt.in15
1 files changed, 15 insertions, 0 deletions
diff --git a/third_party/abseil-cpp/CMake/Googletest/CMakeLists.txt.in b/third_party/abseil-cpp/CMake/Googletest/CMakeLists.txt.in
new file mode 100644
index 0000000000..d60a33e9ac
--- /dev/null
+++ b/third_party/abseil-cpp/CMake/Googletest/CMakeLists.txt.in
@@ -0,0 +1,15 @@
+cmake_minimum_required(VERSION 2.8.2)
+
+project(googletest-download NONE)
+
+include(ExternalProject)
+ExternalProject_Add(googletest
+ GIT_REPOSITORY https://github.com/google/googletest.git
+ GIT_TAG master
+ SOURCE_DIR "${CMAKE_BINARY_DIR}/googletest-src"
+ BINARY_DIR "${CMAKE_BINARY_DIR}/googletest-build"
+ CONFIGURE_COMMAND ""
+ BUILD_COMMAND ""
+ INSTALL_COMMAND ""
+ TEST_COMMAND ""
+) \ No newline at end of file