Merge e61a95a258bc3062d2d4900f95df3719ecfdbea7 into 1b96fa13f549387b7549cc89e1a785cf143a1a50

This commit is contained in:
Hamza 2025-11-28 13:59:38 +00:00 committed by GitHub
commit 661bceea0c
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
3 changed files with 4 additions and 5 deletions

View File

@ -3,7 +3,7 @@
cmake_minimum_required(VERSION 3.16)
project(googletest-distribution)
project(googletest-distribution LANGUAGES CXX)
set(GOOGLETEST_VERSION 1.16.0)
if(NOT CYGWIN AND NOT MSYS AND NOT ${CMAKE_SYSTEM_NAME} STREQUAL QNX)

View File

@ -35,9 +35,9 @@ endif()
# CMake files in this project can refer to the root source directory
# as ${gmock_SOURCE_DIR} and to the root binary directory as
# ${gmock_BINARY_DIR}.
# Language "C" is required for find_package(Threads).
cmake_minimum_required(VERSION 3.13)
project(gmock VERSION ${GOOGLETEST_VERSION} LANGUAGES CXX C)
project(gmock VERSION ${GOOGLETEST_VERSION} LANGUAGES CXX)
if (COMMAND set_up_hermetic_build)
set_up_hermetic_build()

View File

@ -42,12 +42,11 @@ endif()
# CMake files in this project can refer to the root source directory
# as ${gtest_SOURCE_DIR} and to the root binary directory as
# ${gtest_BINARY_DIR}.
# Language "C" is required for find_package(Threads).
# Project version.
cmake_minimum_required(VERSION 3.13)
project(gtest VERSION ${GOOGLETEST_VERSION} LANGUAGES CXX C)
project(gtest VERSION ${GOOGLETEST_VERSION} LANGUAGES CXX)
if (COMMAND set_up_hermetic_build)
set_up_hermetic_build()