diff options
author | Dong XiaoC <godxcgo@foxmail.com> | 2016-12-23 11:28:25 (GMT) |
---|---|---|
committer | Brad King <brad.king@kitware.com> | 2017-01-10 18:25:59 (GMT) |
commit | eadd395a1396ed78a3ecea7740f8f4735ab84453 (patch) | |
tree | 1b9803c59f48faf015b85c297829cc12ec7ed215 /Modules | |
parent | e8e9034596e15dee3c8febe860c2429df512dc10 (diff) | |
download | CMake-eadd395a1396ed78a3ecea7740f8f4735ab84453.zip CMake-eadd395a1396ed78a3ecea7740f8f4735ab84453.tar.gz CMake-eadd395a1396ed78a3ecea7740f8f4735ab84453.tar.bz2 |
FindGTest: Fix documented GTEST_MSVC_SEARCH default value
Documentation updates in commit v3.5.0-rc1~124^2~2 (FindGTest: Add
imported targets and update documentation, 2015-12-10) accidentally
changed the documented default to the wrong value. Restore the
documentation to refer to the actual default used in the implementation.
Diffstat (limited to 'Modules')
-rw-r--r-- | Modules/FindGTest.cmake | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Modules/FindGTest.cmake b/Modules/FindGTest.cmake index 76ab716..931cc18 100644 --- a/Modules/FindGTest.cmake +++ b/Modules/FindGTest.cmake @@ -49,8 +49,8 @@ # The root directory of the Google Test installation (may also be # set as an environment variable) # ``GTEST_MSVC_SEARCH`` -# If compiling with MSVC, this variable can be set to ``MD`` or -# ``MT`` (the default) to enable searching a GTest build tree +# If compiling with MSVC, this variable can be set to ``MT`` or +# ``MD`` (the default) to enable searching a GTest build tree # # # Example usage |