2009-05-09 16:15:53 +04:00
|
|
|
|
2009-09-28 19:46:51 +04:00
|
|
|
#=============================================================================
|
|
|
|
# Copyright 2004-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.
|
|
|
|
#=============================================================================
|
|
|
|
# (To distributed this file outside of CMake, substitute the full
|
|
|
|
# License text for the above reference.)
|
|
|
|
|
2009-05-09 16:15:53 +04:00
|
|
|
# VCExpress does not support cross compiling, which is necessary for Win CE
|
|
|
|
SET( _CMAKE_MAKE_PROGRAM_NAMES devenv)
|
|
|
|
IF(NOT CMAKE_CROSSCOMPILING)
|
|
|
|
SET( _CMAKE_MAKE_PROGRAM_NAMES ${_CMAKE_MAKE_PROGRAM_NAMES} VCExpress)
|
|
|
|
ENDIF(NOT CMAKE_CROSSCOMPILING)
|
|
|
|
|
2004-07-05 20:16:33 +04:00
|
|
|
FIND_PROGRAM(CMAKE_MAKE_PROGRAM
|
2009-05-09 16:15:53 +04:00
|
|
|
NAMES ${_CMAKE_MAKE_PROGRAM_NAMES}
|
2009-05-26 17:55:10 +04:00
|
|
|
HINTS
|
2004-07-05 20:16:33 +04:00
|
|
|
[HKEY_LOCAL_MACHINE\\SOFTWARE\\Microsoft\\VisualStudio\\8.0\\Setup\\VS;EnvironmentDirectory]
|
|
|
|
[HKEY_LOCAL_MACHINE\\SOFTWARE\\Microsoft\\VisualStudio\\8.0\\Setup;Dbghelp_path]
|
2006-04-05 01:27:03 +04:00
|
|
|
"$ENV{ProgramFiles}/Microsoft Visual Studio 8/Common7/IDE"
|
|
|
|
"$ENV{ProgramFiles}/Microsoft Visual Studio8/Common7/IDE"
|
|
|
|
"$ENV{ProgramFiles} (x86)/Microsoft Visual Studio 8/Common7/IDE"
|
|
|
|
"$ENV{ProgramFiles} (x86)/Microsoft Visual Studio8/Common7/IDE"
|
2004-07-05 20:16:33 +04:00
|
|
|
"/Program Files/Microsoft Visual Studio 8/Common7/IDE/"
|
|
|
|
)
|
|
|
|
MARK_AS_ADVANCED(CMAKE_MAKE_PROGRAM)
|
2006-04-10 21:46:37 +04:00
|
|
|
SET(MSVC80 1)
|
2007-09-17 23:21:47 +04:00
|
|
|
SET(MSVC_VERSION 1400)
|