summaryrefslogtreecommitdiffstats
path: root/Source/cmake.cxx
diff options
context:
space:
mode:
authorBill Hoffman <bill.hoffman@kitware.com>2004-07-05 16:16:33 (GMT)
committerBill Hoffman <bill.hoffman@kitware.com>2004-07-05 16:16:33 (GMT)
commit86195caf6ad23d6528748ad3879394b8709513c5 (patch)
tree2c48ed3825c1ad64ce0805d43a7cf2fb5e4b81e0 /Source/cmake.cxx
parentbbc9e4a9dcbe293a5054cf8296fa4fce7e9cea35 (diff)
downloadCMake-86195caf6ad23d6528748ad3879394b8709513c5.zip
CMake-86195caf6ad23d6528748ad3879394b8709513c5.tar.gz
CMake-86195caf6ad23d6528748ad3879394b8709513c5.tar.bz2
ENH: add support for VCExpress 2005
Diffstat (limited to 'Source/cmake.cxx')
-rw-r--r--Source/cmake.cxx3
1 files changed, 3 insertions, 0 deletions
diff --git a/Source/cmake.cxx b/Source/cmake.cxx
index e262fe4..e13c872 100644
--- a/Source/cmake.cxx
+++ b/Source/cmake.cxx
@@ -29,6 +29,7 @@
#if !defined(__MINGW32__)
#include "cmGlobalVisualStudio7Generator.h"
#include "cmGlobalVisualStudio71Generator.h"
+#include "cmGlobalVisualStudio8Generator.h"
#endif
#include "cmGlobalBorlandMakefileGenerator.h"
#include "cmGlobalNMakeMakefileGenerator.h"
@@ -1348,6 +1349,8 @@ void cmake::AddDefaultGenerators()
&cmGlobalVisualStudio7Generator::New;
m_Generators[cmGlobalVisualStudio71Generator::GetActualName()] =
&cmGlobalVisualStudio71Generator::New;
+ m_Generators[cmGlobalVisualStudio8Generator::GetActualName()] =
+ &cmGlobalVisualStudio8Generator::New;
#endif
m_Generators[cmGlobalBorlandMakefileGenerator::GetActualName()] =
&cmGlobalBorlandMakefileGenerator::New;