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.
16 lines
473 B
16 lines
473 B
4 months ago
|
CMAKE_MINIMUM_REQUIRED(VERSION 3.5 FATAL_ERROR)
|
||
|
|
||
|
PROJECT(googletest-download NONE)
|
||
|
|
||
|
INCLUDE(ExternalProject)
|
||
|
ExternalProject_Add(googletest
|
||
|
URL https://github.com/google/googletest/archive/release-1.10.0.zip
|
||
|
URL_HASH SHA256=94c634d499558a76fa649edb13721dce6e98fb1e7018dfaeba3cd7a083945e91
|
||
|
SOURCE_DIR "${CMAKE_BINARY_DIR}/googletest-source"
|
||
|
BINARY_DIR "${CMAKE_BINARY_DIR}/googletest"
|
||
|
CONFIGURE_COMMAND ""
|
||
|
BUILD_COMMAND ""
|
||
|
INSTALL_COMMAND ""
|
||
|
TEST_COMMAND ""
|
||
|
)
|