2009-06-26 00:41:57 +04:00
|
|
|
|
2009-09-28 19:46:51 +04: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 04:48:47 +04:00
|
|
|
# (To distribute this file outside of CMake, substitute the full
|
2009-09-28 19:46:51 +04:00
|
|
|
# License text for the above reference.)
|
|
|
|
|
2010-04-16 20:48:23 +04:00
|
|
|
# We use MSBuild as the build tool for VS 10
|
2009-07-10 17:12:39 +04:00
|
|
|
FIND_PROGRAM(CMAKE_MAKE_PROGRAM
|
|
|
|
NAMES MSBuild
|
2010-04-16 20:48:23 +04:00
|
|
|
HINTS
|
2010-05-04 17:50:33 +04:00
|
|
|
[HKEY_LOCAL_MACHINE\\SOFTWARE\\Microsoft\\VisualStudio\\10.0\\Setup\\VS;ProductDir]
|
2009-10-21 01:24:23 +04: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 20:48:23 +04:00
|
|
|
"$ENV{SYSTEMROOT}/Microsoft.NET/Framework/[HKEY_LOCAL_MACHINE\\SOFTWARE\\Microsoft\\VCExpress\\10.0;CLR Version]/"
|
2009-06-26 00:41:57 +04:00
|
|
|
)
|
2009-07-10 17:12:39 +04:00
|
|
|
|
2009-06-26 00:41:57 +04:00
|
|
|
MARK_AS_ADVANCED(CMAKE_MAKE_PROGRAM)
|
|
|
|
SET(MSVC10 1)
|
|
|
|
SET(MSVC_VERSION 1600)
|
|
|
|
|