diff options
author | Brad King <brad.king@kitware.com> | 2019-03-08 12:07:46 (GMT) |
---|---|---|
committer | Brad King <brad.king@kitware.com> | 2019-03-08 12:23:55 (GMT) |
commit | 58426958ab159ed1f05f6425f914f969dc954e25 (patch) | |
tree | 5eb68a9a1bb6b653e309250a97cb36841163a3b6 /Utilities/Release/win64_release.cmake | |
parent | b90cab5bff63902818cc3cc6268a7f96157c1381 (diff) | |
download | CMake-58426958ab159ed1f05f6425f914f969dc954e25.zip CMake-58426958ab159ed1f05f6425f914f969dc954e25.tar.gz CMake-58426958ab159ed1f05f6425f914f969dc954e25.tar.bz2 |
Utilities/Release: Update for using Windows 10 SDK
In commit e903a9fc55 (Utilities/Release: Create a Windows 64-bit binary,
2016-03-16, v3.6.0-rc1~235^2~2) we added a `_USING_V110_SDK71_` macro to
tell the MSVC standard library headers they were using an older SDK.
The environment in which our Windows binaries are produced has been
updated to use a Windows 10 SDK now that we do not need to support
WinXP, so we can drop the definition.
Diffstat (limited to 'Utilities/Release/win64_release.cmake')
-rw-r--r-- | Utilities/Release/win64_release.cmake | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Utilities/Release/win64_release.cmake b/Utilities/Release/win64_release.cmake index 8417206..511f0a3 100644 --- a/Utilities/Release/win64_release.cmake +++ b/Utilities/Release/win64_release.cmake @@ -31,7 +31,7 @@ CMAKE_PREFIX_PATH:STRING=${qt_prefix} CMake_TEST_Qt4:BOOL=OFF CMake_TEST_Qt5:BOOL=OFF ") -set(ppflags "-D_WIN32_WINNT=0x601 -DNTDDI_VERSION=0x06010000 -D_USING_V110_SDK71_") +set(ppflags "-D_WIN32_WINNT=0x601 -DNTDDI_VERSION=0x06010000") set(CFLAGS "${ppflags}") set(CXXFLAGS "${ppflags}") set(ENV ". ~/rel/env64") |