Only use GTest's own tuple on clang.

This commit is contained in:
Victor Zverovich 2013-11-15 14:21:55 -08:00
parent cd882b547e
commit b697a7d6f9

View File

@ -33,7 +33,9 @@ if (EXISTS ${CMAKE_CURRENT_SOURCE_DIR}/gtest/CMakeLists.txt)
gtest_force_shared_crt
"Use shared (DLL) run-time lib even when Google Test is built as static lib."
ON)
add_definitions(-DGTEST_USE_OWN_TR1_TUPLE=1)
if ("${CMAKE_CXX_COMPILER_ID}" STREQUAL "Clang")
add_definitions(-DGTEST_USE_OWN_TR1_TUPLE=1)
endif ()
add_subdirectory(gtest)
include_directories(gtest/include)
link_directories(${CMAKE_CURRENT_BINARY_DIR}/gtest)