From fca8588b2c770417f718b76e352ab6f8fd4d0adb Mon Sep 17 00:00:00 2001 From: David Sankel Date: Thu, 27 Feb 2025 18:29:12 -0500 Subject: [PATCH] Bump release to 1.16.0 and use GTest as the package name. This should fix the issues found in https://github.com/bemanproject/exemplar/pull/92 --- CMakeLists.txt | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 1cfbb655..9cc11edc 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -31,14 +31,14 @@ include(GNUInstallDirs) if(BEMAN_EXEMPLAR_BUILD_TESTS) # Fetch GoogleTest FetchContent_Declare( - googletest + GTest GIT_REPOSITORY https://github.com/google/googletest.git GIT_TAG - f8d7d77c06936315286eb55f8de22cd23c188571 # release-1.14.0 + 6910c9d9165801d8827d628cb72eb7ea9dd538c5 # release-1.16.0 EXCLUDE_FROM_ALL ) set(INSTALL_GTEST OFF) # Disable GoogleTest installation - FetchContent_MakeAvailable(googletest) + FetchContent_MakeAvailable(GTest) endif() add_subdirectory(src/beman/exemplar)