minor fix on CMakeLists for checking MSVC_VERSION

(cherry picked from commit ce15044f73)

(cherry picked from commit ce15044f73)

git-svn-id: https://svn.code.sf.net/p/freeglut/code/trunk@1767 7f0cb862-5218-0410-a997-914c9d46530a
This commit is contained in:
dcnieho 2015-06-29 10:09:48 +00:00
parent e595297daf
commit 976e05c12f

View File

@ -273,7 +273,11 @@ IF(WIN32)
SET( CMAKE_DEBUG_POSTFIX "d" ) SET( CMAKE_DEBUG_POSTFIX "d" )
ENDIF(MSVC) ENDIF(MSVC)
IF(NOT(MSVC_VERSION LESS "1300")) IF(NOT(MSVC_VERSION LESS "1600"))
# minimum requirement for WM_TOUCH device
ADD_DEFINITIONS(-D_WIN32_WINNT=0x0601)
ADD_DEFINITIONS(-DWINVER=0x0601)
ELSEIF(NOT(MSVC_VERSION LESS "1300"))
# minimum requirement for spaceball device # minimum requirement for spaceball device
ADD_DEFINITIONS(-D_WIN32_WINNT=0x0501) ADD_DEFINITIONS(-D_WIN32_WINNT=0x0501)
ADD_DEFINITIONS(-DWINVER=0x0501) ADD_DEFINITIONS(-DWINVER=0x0501)
@ -283,11 +287,6 @@ IF(WIN32)
ADD_DEFINITIONS(-DWINVER=0x0500) ADD_DEFINITIONS(-DWINVER=0x0500)
ENDIF() ENDIF()
IF(NOT(MSVC_VERSION LESS "1600"))
# minimum requirement for WM_TOUCH device
ADD_DEFINITIONS(-D_WIN32_WINNT=0x0601)
ADD_DEFINITIONS(-DWINVER=0x0601)
ENDIF()
ENDIF() ENDIF()
IF(CMAKE_COMPILER_IS_GNUCC) IF(CMAKE_COMPILER_IS_GNUCC)