FindGTest: add lib search path for MSVC x64 platform

This commit is contained in:
Dong XiaoC
2016-12-23 06:31:11 -05:00
committed by Brad King
parent eadd395a13
commit 8deb913d98

View File

@@ -160,11 +160,17 @@ if(MSVC)
if(GTEST_MSVC_SEARCH STREQUAL "MD")
list(APPEND _gtest_libpath_suffixes
msvc/gtest-md/Debug
msvc/gtest-md/Release)
msvc/gtest-md/Release
msvc/x64/Debug
msvc/x64/Release
)
elseif(GTEST_MSVC_SEARCH STREQUAL "MT")
list(APPEND _gtest_libpath_suffixes
msvc/gtest/Debug
msvc/gtest/Release)
msvc/gtest/Release
msvc/x64/Debug
msvc/x64/Release
)
endif()
endif()