Merge topic '11279'

aca758b Fixes issue 11279: CMakeDetermineVSServicePack support for VS10
This commit is contained in:
Brad King 2010-10-05 15:30:32 -04:00 committed by CMake Topic Stage
commit cb314e250b
1 changed files with 4 additions and 2 deletions

View File

@ -23,8 +23,8 @@
# =========================== # ===========================
#============================================================================= #=============================================================================
# Copyright 2009 Kitware, Inc. # Copyright 2009-2010 Kitware, Inc.
# Copyright 2009 Philip Lowman <philip@yhbt.com> # Copyright 2009-2010 Philip Lowman <philip@yhbt.com>
# #
# Distributed under the OSI-approved BSD License (the "License"); # Distributed under the OSI-approved BSD License (the "License");
# see accompanying file Copyright.txt for details. # see accompanying file Copyright.txt for details.
@ -47,6 +47,8 @@ function(_DetermineVSServicePackFromCompiler _OUT_VAR _cl_version)
set(_version "vc90") set(_version "vc90")
elseif(${_cl_version} VERSION_EQUAL "15.00.30729.01") elseif(${_cl_version} VERSION_EQUAL "15.00.30729.01")
set(_version "vc90sp1") set(_version "vc90sp1")
elseif(${_cl_version} VERSION_EQUAL "16.00.30319.01")
set(_version "vc100")
else() else()
set(_version "") set(_version "")
endif() endif()