We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent d1b6cbd commit 99ea607Copy full SHA for 99ea607
1 file changed
.github/actions/install-gtest-windows/action.yml
@@ -12,7 +12,7 @@ runs:
12
cmake --find-package -DNAME=GTest -DCOMPILER_ID=GNU -DLANGUAGE=CXX -DMODE=EXIST | Tee-Object -Variable res;
13
if ( $res -notlike '*GTest found.*')
14
{
15
- git clone https://github.com/google/googletest.git;
+ git clone --branch release-1.12.1 https://github.com/google/googletest.git;
16
cmake -DCMAKE_INSTALL_PREFIX='C:\Program Files\gtest' -Dgtest_force_shared_crt=ON -DBUILD_GMOCK=ON `
17
-B build\gtest -A x64 -T host=x64 googletest;
18
cmake --build build\gtest --config ${{ inputs.cmake_build_type }} --target install
0 commit comments