aboutsummaryrefslogtreecommitdiff
path: root/GoogleTest-CMakeLists.txt.in
diff options
context:
space:
mode:
authorGravatar Jeff McGlynn <jeff@jeffmcglynn.com>2018-11-27 11:17:42 -0800
committerGravatar GitHub <noreply@github.com>2018-11-27 11:17:42 -0800
commit500945dd1316fcebb6d2fc6ec22019988b8ce6d2 (patch)
treec1c350b5ec2b39c1c036e576968a003c84056028 /GoogleTest-CMakeLists.txt.in
parent16661ba8c0103c2571e84a59a107c9e41dbe60dc (diff)
parentbaf0508027872f50198e838fe1148b73a9b11b1f (diff)
Merge pull request #1 from pokowaka/master
CMake support to enable compilation under Visual Studio
Diffstat (limited to 'GoogleTest-CMakeLists.txt.in')
-rw-r--r--GoogleTest-CMakeLists.txt.in15
1 files changed, 15 insertions, 0 deletions
diff --git a/GoogleTest-CMakeLists.txt.in b/GoogleTest-CMakeLists.txt.in
new file mode 100644
index 0000000..569f4df
--- /dev/null
+++ b/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 "release-1.8.1"
+ SOURCE_DIR "${CMAKE_CURRENT_BINARY_DIR}/googletest-src"
+ BINARY_DIR "${CMAKE_CURRENT_BINARY_DIR}/googletest-build"
+ CONFIGURE_COMMAND ""
+ BUILD_COMMAND ""
+ INSTALL_COMMAND ""
+ TEST_COMMAND ""
+) \ No newline at end of file