# CMake script run a generation-time. This must be separate from the main # CMakeLists.txt file to allow downloading and building googletest at generation # time. 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.11.0 SOURCE_DIR "${GLOBAL_OUTPUT_PATH}/googletest-src" BINARY_DIR "${GLOBAL_OUTPUT_PATH}/googletest-build" CONFIGURE_COMMAND "" BUILD_COMMAND "" INSTALL_COMMAND "" TEST_COMMAND "" )