summaryrefslogtreecommitdiffstats
path: root/Source/cmLocalVisualStudio10Generator.cxx
diff options
context:
space:
mode:
authorBrad King <brad.king@kitware.com>2009-10-22 12:24:11 (GMT)
committerBrad King <brad.king@kitware.com>2009-10-22 12:24:11 (GMT)
commit50759a9ed3f7be7763fbbd6b54a338607ab3a513 (patch)
treed8e7f4f680e3ea2b0ec109eee10844fcb8959ee6 /Source/cmLocalVisualStudio10Generator.cxx
parente1c1ab7197785b54de9b36f6b335419f333d9f12 (diff)
downloadCMake-50759a9ed3f7be7763fbbd6b54a338607ab3a513.zip
CMake-50759a9ed3f7be7763fbbd6b54a338607ab3a513.tar.gz
CMake-50759a9ed3f7be7763fbbd6b54a338607ab3a513.tar.bz2
WIP: VS 10 Win64 generator
See issue #9754.
Diffstat (limited to 'Source/cmLocalVisualStudio10Generator.cxx')
-rw-r--r--Source/cmLocalVisualStudio10Generator.cxx8
1 files changed, 4 insertions, 4 deletions
diff --git a/Source/cmLocalVisualStudio10Generator.cxx b/Source/cmLocalVisualStudio10Generator.cxx
index 382192e0..8df0ffa 100644
--- a/Source/cmLocalVisualStudio10Generator.cxx
+++ b/Source/cmLocalVisualStudio10Generator.cxx
@@ -13,7 +13,7 @@
#include "cmTarget.h"
#include "cmMakefile.h"
#include "cmVisualStudio10TargetGenerator.h"
-#include "cmGlobalVisualStudio7Generator.h"
+#include "cmGlobalVisualStudio10Generator.h"
#include <cm_expat.h>
#include "cmXMLParser.h"
class cmVS10XMLParser : public cmXMLParser
@@ -93,9 +93,9 @@ void cmLocalVisualStudio10Generator::Generate()
for(cmTargets::iterator l = tgts.begin(); l != tgts.end(); ++l)
{
- cmVisualStudio10TargetGenerator tg(&l->second,
- (cmGlobalVisualStudio7Generator*)
- this->GetGlobalGenerator());
+ cmVisualStudio10TargetGenerator tg(
+ &l->second, static_cast<cmGlobalVisualStudio10Generator*>(
+ this->GetGlobalGenerator()));
tg.Generate();
}
this->WriteStampFiles();