Repopulate googletest directory.

This commit is contained in:
Gene Morgan
2017-03-15 15:11:53 -07:00
parent 7c8492efa4
commit baa7b133d3
319 changed files with 151960 additions and 0 deletions

16
third_party/googletest/CMakeLists.txt vendored Normal file
View File

@@ -0,0 +1,16 @@
cmake_minimum_required(VERSION 2.6.2)
project( googletest-distribution )
enable_testing()
option(BUILD_GTEST "Builds the googletest subproject" OFF)
#Note that googlemock target already builds googletest
option(BUILD_GMOCK "Builds the googlemock subproject" ON)
if(BUILD_GMOCK)
add_subdirectory( googlemock )
elseif(BUILD_GTEST)
add_subdirectory( googletest )
endif()