2019-05-20 09:29:18 +03:00
|
|
|
# Note: CMake support is community-based. The maintainers do not use CMake
|
2019-04-30 00:18:42 +03:00
|
|
|
# internally.
|
|
|
|
|
2020-10-30 18:31:54 +03:00
|
|
|
cmake_minimum_required(VERSION 2.8.12)
|
2018-10-24 07:03:07 +03:00
|
|
|
|
2019-05-28 12:06:26 +03:00
|
|
|
if (POLICY CMP0048)
|
|
|
|
cmake_policy(SET CMP0048 NEW)
|
|
|
|
endif (POLICY CMP0048)
|
|
|
|
|
2019-02-04 21:59:51 +03:00
|
|
|
project(googletest-distribution)
|
2019-10-03 17:39:13 +03:00
|
|
|
set(GOOGLETEST_VERSION 1.10.0)
|
2019-02-04 21:59:51 +03:00
|
|
|
|
2020-03-13 23:36:27 +03:00
|
|
|
if (CMAKE_VERSION VERSION_GREATER "3.0.2")
|
2020-01-23 00:29:28 +03:00
|
|
|
if(NOT CYGWIN AND NOT MSYS AND NOT ${CMAKE_SYSTEM_NAME} STREQUAL QNX)
|
2019-02-04 22:01:11 +03:00
|
|
|
set(CMAKE_CXX_EXTENSIONS OFF)
|
|
|
|
endif()
|
2018-10-24 07:03:07 +03:00
|
|
|
endif()
|
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()
|