Enable wstring in gtest (#304)

This commit is contained in:
vitaut 2016-04-13 08:26:42 -04:00
parent e49a4e0aff
commit 581afee039

View File

@ -8,6 +8,7 @@
add_library(gmock STATIC add_library(gmock STATIC
gmock-gtest-all.cc gmock/gmock.h gtest/gtest.h gtest/gtest-spi.h) gmock-gtest-all.cc gmock/gmock.h gtest/gtest.h gtest/gtest-spi.h)
target_compile_options(gmock PUBLIC ${CPP11_FLAG}) target_compile_options(gmock PUBLIC ${CPP11_FLAG})
target_compile_definitions(gmock PUBLIC GTEST_HAS_STD_WSTRING=1)
target_include_directories(gmock PUBLIC .) target_include_directories(gmock PUBLIC .)
find_package(Threads) find_package(Threads)