2009-06-25 20:41:57 +00:00
|
|
|
|
2009-09-28 15:46:51 +00:00
|
|
|
#=============================================================================
|
|
|
|
# Copyright 2009 Kitware, Inc.
|
|
|
|
#
|
|
|
|
# Distributed under the OSI-approved BSD License (the "License");
|
|
|
|
# see accompanying file Copyright.txt for details.
|
|
|
|
#
|
|
|
|
# This software is distributed WITHOUT ANY WARRANTY; without even the
|
|
|
|
# implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
|
|
|
|
# See the License for more information.
|
|
|
|
#=============================================================================
|
2010-08-07 00:48:47 +00:00
|
|
|
# (To distribute this file outside of CMake, substitute the full
|
2009-09-28 15:46:51 +00:00
|
|
|
# License text for the above reference.)
|
|
|
|
|
2010-04-16 16:48:23 +00:00
|
|
|
# We use MSBuild as the build tool for VS 10
|
2009-07-10 13:12:39 +00:00
|
|
|
FIND_PROGRAM(CMAKE_MAKE_PROGRAM
|
|
|
|
NAMES MSBuild
|
2010-04-16 16:48:23 +00:00
|
|
|
HINTS
|
2010-05-04 13:50:33 +00:00
|
|
|
[HKEY_LOCAL_MACHINE\\SOFTWARE\\Microsoft\\VisualStudio\\10.0\\Setup\\VS;ProductDir]
|
2009-10-20 21:24:23 +00:00
|
|
|
"$ENV{SYSTEMROOT}/Microsoft.NET/Framework/[HKEY_LOCAL_MACHINE\\SOFTWARE\\Microsoft\\VisualStudio\\10.0;CLR Version]/"
|
|
|
|
"c:/WINDOWS/Microsoft.NET/Framework/[HKEY_LOCAL_MACHINE\\SOFTWARE\\Microsoft\\VisualStudio\\10.0;CLR Version]/"
|
2010-04-16 16:48:23 +00:00
|
|
|
"$ENV{SYSTEMROOT}/Microsoft.NET/Framework/[HKEY_LOCAL_MACHINE\\SOFTWARE\\Microsoft\\VCExpress\\10.0;CLR Version]/"
|
2009-06-25 20:41:57 +00:00
|
|
|
)
|
2009-07-10 13:12:39 +00:00
|
|
|
|
2009-06-25 20:41:57 +00:00
|
|
|
MARK_AS_ADVANCED(CMAKE_MAKE_PROGRAM)
|
|
|
|
SET(MSVC10 1)
|
|
|
|
SET(MSVC_VERSION 1600)
|
|
|
|
|