2018-07-24 18:06:55 +03:00
|
|
|
cmake_minimum_required(VERSION 2.8.8)
|
2018-10-08 23:59:24 +03:00
|
|
|
add_definitions(-std=c++11)
|
2015-11-11 23:29:41 +03:00
|
|
|
|
2017-08-03 06:50:45 +03:00
|
|
|
if (POLICY CMP0048)
|
2017-08-03 04:03:13 +03:00
|
|
|
cmake_policy(SET CMP0048 NEW)
|
2017-08-03 06:50:45 +03:00
|
|
|
endif (POLICY CMP0048)
|
2017-08-03 04:03:13 +03:00
|
|
|
|
2018-07-24 18:06:55 +03:00
|
|
|
project(googletest-distribution)
|
|
|
|
set(GOOGLETEST_VERSION 1.9.0)
|
2015-11-11 23:29:41 +03:00
|
|
|
|
|
|
|
enable_testing()
|
|
|
|
|
2017-08-09 22:29:36 +03:00
|
|
|
include(CMakeDependentOption)
|
2018-07-24 18:06:55 +03:00
|
|
|
include(GNUInstallDirs)
|
2017-08-09 22:29:36 +03:00
|
|
|
|
2015-11-11 23:29:41 +03:00
|
|
|
#Note that googlemock target already builds googletest
|
|
|
|
option(BUILD_GMOCK "Builds the googlemock subproject" ON)
|
2017-12-01 14:48:46 +03:00
|
|
|
option(INSTALL_GTEST "Enable installation of googletest. (Projects embedding googletest may want to turn this OFF.)" ON)
|
2017-08-16 17:49:06 +03:00
|
|
|
|
2015-11-11 23:29:41 +03:00
|
|
|
if(BUILD_GMOCK)
|
|
|
|
add_subdirectory( googlemock )
|
2017-12-01 14:48:46 +03:00
|
|
|
else()
|
2015-11-11 23:29:41 +03:00
|
|
|
add_subdirectory( googletest )
|
|
|
|
endif()
|