Use git commit hash in CMake quickstart
Commit hashes reflect GoogleTest's live-at-head stance. Credits to @shinfd. Fixes #4000 PiperOrigin-RevId: 483655943 Change-Id: Ieeb162859348dbe3657e18f283bac81412f2585d
This commit is contained in:
		
				
					committed by
					
						
						Copybara-Service
					
				
			
			
				
	
			
			
			
						parent
						
							03597a01ee
						
					
				
				
					commit
					90171d1061
				
			@@ -58,8 +58,7 @@ set(CMAKE_CXX_STANDARD 14)
 | 
				
			|||||||
include(FetchContent)
 | 
					include(FetchContent)
 | 
				
			||||||
FetchContent_Declare(
 | 
					FetchContent_Declare(
 | 
				
			||||||
  googletest
 | 
					  googletest
 | 
				
			||||||
  GIT_REPOSITORY https://github.com/google/googletest.git
 | 
					  URL https://github.com/google/googletest/archive/03597a01ee50ed33e9dfd640b249b4be3799d395.zip
 | 
				
			||||||
  GIT_TAG release-1.12.1
 | 
					 | 
				
			||||||
)
 | 
					)
 | 
				
			||||||
# For Windows: Prevent overriding the parent project's compiler/linker settings
 | 
					# For Windows: Prevent overriding the parent project's compiler/linker settings
 | 
				
			||||||
set(gtest_force_shared_crt ON CACHE BOOL "" FORCE)
 | 
					set(gtest_force_shared_crt ON CACHE BOOL "" FORCE)
 | 
				
			||||||
@@ -67,7 +66,7 @@ FetchContent_MakeAvailable(googletest)
 | 
				
			|||||||
```
 | 
					```
 | 
				
			||||||
 | 
					
 | 
				
			||||||
The above configuration declares a dependency on GoogleTest which is downloaded
 | 
					The above configuration declares a dependency on GoogleTest which is downloaded
 | 
				
			||||||
from GitHub. In the above example, `609281088cfefc76f9d0ce82e1ff6c30cc3591e5` is
 | 
					from GitHub. In the above example, `03597a01ee50ed33e9dfd640b249b4be3799d395` is
 | 
				
			||||||
the Git commit hash of the GoogleTest version to use; we recommend updating the
 | 
					the Git commit hash of the GoogleTest version to use; we recommend updating the
 | 
				
			||||||
hash often to point to the latest version.
 | 
					hash often to point to the latest version.
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 
 | 
				
			|||||||
		Reference in New Issue
	
	Block a user