libcryfs/vendor/googletest/gtest/CMakeLists.txt

24 lines
584 B
CMake
Raw Normal View History

2019-02-04 05:07:15 +01:00
cmake_minimum_required(VERSION 2.8.8)
2018-05-29 05:46:51 +02:00
if (POLICY CMP0048)
cmake_policy(SET CMP0048 NEW)
endif (POLICY CMP0048)
2019-02-04 05:07:15 +01:00
project(googletest-distribution)
set(GOOGLETEST_VERSION 1.9.0)
2018-05-29 05:46:51 +02:00
enable_testing()
include(CMakeDependentOption)
2019-02-04 05:07:15 +01:00
include(GNUInstallDirs)
2018-05-29 05:46:51 +02:00
#Note that googlemock target already builds googletest
option(BUILD_GMOCK "Builds the googlemock subproject" ON)
2019-02-04 05:07:15 +01:00
option(INSTALL_GTEST "Enable installation of googletest. (Projects embedding googletest may want to turn this OFF.)" ON)
2018-05-29 05:46:51 +02:00
if(BUILD_GMOCK)
add_subdirectory( googlemock )
2019-02-04 05:07:15 +01:00
else()
2018-05-29 05:46:51 +02:00
add_subdirectory( googletest )
endif()