2019-05-20 06:29:18 +00:00
|
|
|
# Note: CMake support is community-based. The maintainers do not use CMake
|
2019-04-29 21:18:42 +00:00
|
|
|
# internally.
|
|
|
|
|
2018-07-24 15:06:55 +00:00
|
|
|
cmake_minimum_required(VERSION 2.8.8)
|
2018-10-24 04:03:07 +00:00
|
|
|
|
2019-05-28 09:06:26 +00:00
|
|
|
if (POLICY CMP0048)
|
|
|
|
cmake_policy(SET CMP0048 NEW)
|
|
|
|
endif (POLICY CMP0048)
|
|
|
|
|
2019-02-04 18:59:51 +00:00
|
|
|
project(googletest-distribution)
|
2019-10-03 14:39:13 +00:00
|
|
|
set(GOOGLETEST_VERSION 1.10.0)
|
2019-02-04 18:59:51 +00:00
|
|
|
|
2020-02-12 20:41:54 +00:00
|
|
|
if (CMAKE_VERSION VERSION_GREATER_EQUAL "3.1")
|
2020-03-04 04:48:59 +00:00
|
|
|
set(CMAKE_CXX_STANDARD 11)
|
|
|
|
set(CMAKE_CXX_STANDARD_REQUIRED OFF)
|
|
|
|
endif()
|
|
|
|
|
|
|
|
if(WIN32)
|
|
|
|
if(MSVC)
|
|
|
|
if(MSVC_TOOLSET_VERSION EQUAL 140 OR MSVC_TOOLSET_VERSION EQUAL 141)
|
|
|
|
# there is a bug reported on https://developercommunity.visualstudio.com/content/problem/9696/c17-not-available-by-default.html
|
|
|
|
# string_view is not available unless we use the /std:c++latest switch
|
|
|
|
set(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} /std:c++latest")
|
|
|
|
endif()
|
2019-02-04 19:01:11 +00:00
|
|
|
endif()
|
2018-10-24 04:03:07 +00:00
|
|
|
endif()
|
2015-11-11 20:29:41 +00:00
|
|
|
|
|
|
|
enable_testing()
|
|
|
|
|
2017-08-09 19:29:36 +00:00
|
|
|
include(CMakeDependentOption)
|
2018-07-24 15:06:55 +00:00
|
|
|
include(GNUInstallDirs)
|
2017-08-09 19:29:36 +00:00
|
|
|
|
2015-11-11 20:29:41 +00:00
|
|
|
#Note that googlemock target already builds googletest
|
|
|
|
option(BUILD_GMOCK "Builds the googlemock subproject" ON)
|
2017-12-01 11:48:46 +00:00
|
|
|
option(INSTALL_GTEST "Enable installation of googletest. (Projects embedding googletest may want to turn this OFF.)" ON)
|
2017-08-16 14:49:06 +00:00
|
|
|
|
2015-11-11 20:29:41 +00:00
|
|
|
if(BUILD_GMOCK)
|
|
|
|
add_subdirectory( googlemock )
|
2017-12-01 11:48:46 +00:00
|
|
|
else()
|
2015-11-11 20:29:41 +00:00
|
|
|
add_subdirectory( googletest )
|
|
|
|
endif()
|