CMakefile to build coroutines subproject

This commit is contained in:
John 2024-02-14 10:53:26 +00:00
parent 3121b799a9
commit 37e5e2e430

View File

@ -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()