Don't use pthreads on Windows for Google framework.

This commit is contained in:
Nathan Moinvaziri 2022-10-15 15:55:40 -07:00
parent c1d56554d6
commit 9333ea834e

View File

@ -5,9 +5,13 @@ include(FetchContent)
enable_language(CXX)
if(NOT TARGET GTest::GTest)
# Prevent overriding the parent project's compiler/linker settings for Windows
set(gtest_force_shared_crt ON CACHE BOOL
"Use shared (DLL) run-time lib even when Google Test is built as static lib." FORCE)
if (WIN32)
# Prevent overriding the parent project's compiler/linker settings for Windows
set(gtest_force_shared_crt ON CACHE BOOL
"Use shared (DLL) run-time lib even when Google Test is built as static lib." FORCE)
set(gtest_disable_pthreads ON CACHE BOOL "Disable pthreads" FORCE)
endif()
# Allow specifying alternative Google test repository
if(NOT DEFINED GTEST_REPOSITORY)