CMake | Windows | Change WINVER from 0x0501 to 0x0601

We need to change minimal WINVER from 0x0501 (Windows XP) to 0x0601 (Windows 7) because it is required to use DISPLAYCONFIG_PATH_INFO.
This commit is contained in:
Scr3amer 2023-03-30 00:24:49 -04:00 committed by GitHub
parent fbdb53b9ca
commit d39db8978a
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -282,7 +282,7 @@ endif()
# win32_platform.h. We define them here until a saner solution can be found
# NOTE: MinGW-w64 and Visual C++ do /not/ need this hack.
if (MINGW)
target_compile_definitions(glfw PRIVATE WINVER=0x0501)
target_compile_definitions(glfw PRIVATE WINVER=0x0601)
endif()
# Workaround for legacy MinGW not providing XInput and DirectInput