]> git.proxmox.com Git - ceph.git/blame - ceph/src/rapidjson/thirdparty/gtest/CMakeLists.txt
buildsys: change download over to reef release
[ceph.git] / ceph / src / rapidjson / thirdparty / gtest / CMakeLists.txt
CommitLineData
31f18b77
FG
1cmake_minimum_required(VERSION 2.6.2)
2
3project( googletest-distribution )
4
5enable_testing()
6
7option(BUILD_GTEST "Builds the googletest subproject" OFF)
8
9#Note that googlemock target already builds googletest
10option(BUILD_GMOCK "Builds the googlemock subproject" ON)
11
12if(BUILD_GMOCK)
13 add_subdirectory( googlemock )
14elseif(BUILD_GTEST)
15 add_subdirectory( googletest )
16endif()