summaryrefslogtreecommitdiffstats
path: root/Source/cmGlobalVisualStudio10Generator.cxx
diff options
context:
space:
mode:
authorBill Hoffman <bill.hoffman@kitware.com>2011-06-23 19:29:25 (GMT)
committerBill Hoffman <bill.hoffman@kitware.com>2011-06-23 19:29:25 (GMT)
commit8555c2b4b768037a37705ef7f2486149ae3cdc13 (patch)
tree0296e245de9f9933072d91ccd4b206c2eea82b50 /Source/cmGlobalVisualStudio10Generator.cxx
parented0075bdb768f8272c2a9fc48e37bf9897427258 (diff)
downloadCMake-8555c2b4b768037a37705ef7f2486149ae3cdc13.zip
CMake-8555c2b4b768037a37705ef7f2486149ae3cdc13.tar.gz
CMake-8555c2b4b768037a37705ef7f2486149ae3cdc13.tar.bz2
Look for VCExpress as a possible build tool as well as devenv.
Diffstat (limited to 'Source/cmGlobalVisualStudio10Generator.cxx')
-rw-r--r--Source/cmGlobalVisualStudio10Generator.cxx3
1 files changed, 2 insertions, 1 deletions
diff --git a/Source/cmGlobalVisualStudio10Generator.cxx b/Source/cmGlobalVisualStudio10Generator.cxx
index 6c3c1ed..328a3da 100644
--- a/Source/cmGlobalVisualStudio10Generator.cxx
+++ b/Source/cmGlobalVisualStudio10Generator.cxx
@@ -123,7 +123,8 @@ std::string cmGlobalVisualStudio10Generator
cmSystemTools::LowerCase(lowerCaseCommand);
// If makeProgram is devenv, parent class knows how to generate command:
- if (lowerCaseCommand.find("devenv") != std::string::npos)
+ if (lowerCaseCommand.find("devenv") != std::string::npos ||
+ lowerCaseCommand.find("VCExpress") != std::string::npos)
{
return cmGlobalVisualStudio7Generator::GenerateBuildCommand(makeProgram,
projectName, additionalOptions, targetName, config, ignoreErrors, fast);