mirror of
https://github.com/zlib-ng/minizip-ng
synced 2025-03-28 21:13:18 +00:00
Don't use pthreads on Windows for Google framework.
This commit is contained in:
parent
c1d56554d6
commit
9333ea834e
@ -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)
|
||||
|
Loading…
x
Reference in New Issue
Block a user