diff options
author | Brad King <brad.king@kitware.com> | 2009-10-22 12:24:11 (GMT) |
---|---|---|
committer | Brad King <brad.king@kitware.com> | 2009-10-22 12:24:11 (GMT) |
commit | 50759a9ed3f7be7763fbbd6b54a338607ab3a513 (patch) | |
tree | d8e7f4f680e3ea2b0ec109eee10844fcb8959ee6 /Source/cmake.cxx | |
parent | e1c1ab7197785b54de9b36f6b335419f333d9f12 (diff) | |
download | CMake-50759a9ed3f7be7763fbbd6b54a338607ab3a513.zip CMake-50759a9ed3f7be7763fbbd6b54a338607ab3a513.tar.gz CMake-50759a9ed3f7be7763fbbd6b54a338607ab3a513.tar.bz2 |
WIP: VS 10 Win64 generator
See issue #9754.
Diffstat (limited to 'Source/cmake.cxx')
-rw-r--r-- | Source/cmake.cxx | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/Source/cmake.cxx b/Source/cmake.cxx index a40d89e..b9162bb 100644 --- a/Source/cmake.cxx +++ b/Source/cmake.cxx @@ -63,6 +63,7 @@ # include "cmGlobalVisualStudio9Generator.h" # include "cmGlobalVisualStudio9Win64Generator.h" # include "cmGlobalVisualStudio10Generator.h" +# include "cmGlobalVisualStudio10Win64Generator.h" # include "cmGlobalVisualStudio8Win64Generator.h" # include "cmGlobalBorlandMakefileGenerator.h" # include "cmGlobalNMakeMakefileGenerator.h" @@ -2364,6 +2365,8 @@ void cmake::AddDefaultGenerators() &cmGlobalVisualStudio7Generator::New; this->Generators[cmGlobalVisualStudio10Generator::GetActualName()] = &cmGlobalVisualStudio10Generator::New; + this->Generators[cmGlobalVisualStudio10Win64Generator::GetActualName()] = + &cmGlobalVisualStudio10Win64Generator::New; this->Generators[cmGlobalVisualStudio71Generator::GetActualName()] = &cmGlobalVisualStudio71Generator::New; this->Generators[cmGlobalVisualStudio8Generator::GetActualName()] = |