We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 0a74ac2 commit 86e45ffCopy full SHA for 86e45ff
1 file changed
cpp/cmake_modules/ThirdpartyToolchain.cmake
@@ -3893,13 +3893,13 @@ function(build_awssdk)
3893
set(MINIMIZE_SIZE ON)
3894
set(USE_OPENSSL ON)
3895
3896
- # For aws-c-common
+ # For aws-c-common and google-cloud-cpp
3897
if(MINGW)
3898
- # PPROCESSOR_NUMBER requires Windows 7 or later.
+ # PPROCESSOR_NUMBER requires Windows 10 or later.
3899
#
3900
- # 0x0601 == _WIN32_WINNT_WIN7
3901
- string(APPEND CMAKE_C_FLAGS " -D_WIN32_WINNT=0x0601")
3902
- string(APPEND CMAKE_CXX_FLAGS " -D_WIN32_WINNT=0x0601")
+ # 0x0A01 == _WIN32_WINNT_WIN10
+ string(APPEND CMAKE_C_FLAGS " -D_WIN32_WINNT=0x0A01")
+ string(APPEND CMAKE_CXX_FLAGS " -D_WIN32_WINNT=0x0A01")
3903
endif()
3904
3905
# For aws-lc
0 commit comments