diff --git a/CMakeLists.txt b/CMakeLists.txt index 9e6d6440d..8244f3674 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -5,6 +5,7 @@ cmake_minimum_required(VERSION 3.13) project(googletest-distribution) set(GOOGLETEST_VERSION 1.14.0) +set(COROUTINES_VERSION 0.1.0) if(NOT CYGWIN AND NOT MSYS AND NOT ${CMAKE_SYSTEM_NAME} STREQUAL QNX) set(CMAKE_CXX_EXTENSIONS OFF) @@ -16,7 +17,7 @@ include(CMakeDependentOption) include(GNUInstallDirs) # Note that googlemock target already builds googletest. -option(BUILD_GMOCK "Builds the googlemock subproject" ON) +option(BUILD_COTEST "Builds cotest/gmock subprojects" ON) option(INSTALL_GTEST "Enable installation of googletest. (Projects embedding googletest may want to turn this OFF.)" ON) option(GTEST_HAS_ABSL "Use Abseil and RE2. Requires Abseil and RE2 to be separately added to the build." OFF) @@ -29,8 +30,8 @@ if(GTEST_HAS_ABSL) endif() endif() -if(BUILD_GMOCK) - add_subdirectory( googlemock ) +if(BUILD_COTEST) + add_subdirectory( coroutines ) else() add_subdirectory( googletest ) endif()