From 9c37384d3b75ded3db3df85ead8af6539aa82366 Mon Sep 17 00:00:00 2001 From: David Capello Date: Fri, 16 Mar 2012 22:22:56 -0300 Subject: [PATCH] Windows XP is the minimum supported platform. --- CMakeLists.txt | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index ee598e22f..545c3b4ef 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -197,7 +197,8 @@ if(WIN32) dbghelp ) - add_definitions(-D_WIN32_WINNT=0x0500) + # Windows XP is the minimum supported platform. + add_definitions(-D_WIN32_WINNT=0x0501 -DWINVER=0x0501) endif(WIN32)