Browse Source

Raise system requirement on Windows to Vista/2008

We need the newer versions of Windows to get access to better
thread primitives.
tags/v1.6.90
Pierre Ossman 8 years ago
parent
commit
1cc323df53
1 changed files with 2 additions and 2 deletions
  1. 2
    2
      CMakeLists.txt

+ 2
- 2
CMakeLists.txt View File

@@ -84,9 +84,9 @@ if(NOT DEFINED BUILD_WINVNC)
set(BUILD_WINVNC 1)
endif()

# Minimum version is Windows XP SP2 (5.2)
# Minimum version is Windows Vista/2008 (6.0)
if(WIN32)
add_definitions(-D_WIN32_IE=0x0502 -D_WIN32_WINNT=0x0502)
add_definitions(-D_WIN32_WINNT=0x0600)
endif()

if(CMAKE_SIZEOF_VOID_P MATCHES 8)

Loading…
Cancel
Save