You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 

17 lines
489 B

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
GIT_TAG release-1.8.1
GIT_SHALLOW 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 ""
)