summaryrefslogtreecommitdiffstats
path: root/Source/cmGlobalVisualStudio10Win64Generator.cxx
diff options
context:
space:
mode:
authorBill Hoffman <bill.hoffman@kitware.com>2009-11-20 16:55:28 (GMT)
committerBill Hoffman <bill.hoffman@kitware.com>2009-11-20 16:55:28 (GMT)
commit268448b89151cf80ac9d4d0ea974a2d4f17c3cd5 (patch)
treeea1099a2ffc78c99939bbab38d2e038d040fb15d /Source/cmGlobalVisualStudio10Win64Generator.cxx
parentbbbdf54a3569aa97687091b7d6a03d645f8dabcb (diff)
downloadCMake-268448b89151cf80ac9d4d0ea974a2d4f17c3cd5.zip
CMake-268448b89151cf80ac9d4d0ea974a2d4f17c3cd5.tar.gz
CMake-268448b89151cf80ac9d4d0ea974a2d4f17c3cd5.tar.bz2
Teach VS generators to set the MACHINE type correctly.
Diffstat (limited to 'Source/cmGlobalVisualStudio10Win64Generator.cxx')
-rw-r--r--Source/cmGlobalVisualStudio10Win64Generator.cxx8
1 files changed, 5 insertions, 3 deletions
diff --git a/Source/cmGlobalVisualStudio10Win64Generator.cxx b/Source/cmGlobalVisualStudio10Win64Generator.cxx
index 0e821c7..3737c14 100644
--- a/Source/cmGlobalVisualStudio10Win64Generator.cxx
+++ b/Source/cmGlobalVisualStudio10Win64Generator.cxx
@@ -29,9 +29,11 @@ void cmGlobalVisualStudio10Win64Generator
}
//----------------------------------------------------------------------------
-void cmGlobalVisualStudio10Win64Generator::EnableLanguage(
- std::vector<std::string> const& lang, cmMakefile *mf, bool optional)
+void cmGlobalVisualStudio10Win64Generator
+::AddPlatformDefinitions(cmMakefile* mf)
{
+ this->cmGlobalVisualStudio10Generator::AddPlatformDefinitions(mf);
mf->AddDefinition("CMAKE_FORCE_WIN64", "TRUE");
- cmGlobalVisualStudio10Generator::EnableLanguage(lang, mf, optional);
+ mf->AddDefinition("MSVC_C_ARCHITECTURE_ID", "X86");
+ mf->AddDefinition("MSVC_CXX_ARCHITECTURE_ID", "X86");
}