Make Win32NetState compatible with MSVC

This commit is contained in:
Vort 2023-03-01 22:41:31 +02:00
parent a199084c99
commit 231c02c058
2 changed files with 6 additions and 2 deletions

View file

@ -140,8 +140,8 @@ if(APPLE)
endif()
if(MSVC)
add_definitions(-DWINVER=0x0501)
add_definitions(-D_WIN32_WINNT=0x0501)
add_definitions(-DWINVER=0x0600)
add_definitions(-D_WIN32_WINNT=0x0600)
else()
set(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -Wall -Wextra -Winvalid-pch -Wno-unused-parameter -Wno-uninitialized")
set(CMAKE_CXX_FLAGS_RELEASE "${CMAKE_CXX_FLAGS_RELEASE} -pedantic")