diff options
author | Bill Hoffman <bill.hoffman@kitware.com> | 2009-11-20 16:55:28 (GMT) |
---|---|---|
committer | Bill Hoffman <bill.hoffman@kitware.com> | 2009-11-20 16:55:28 (GMT) |
commit | 268448b89151cf80ac9d4d0ea974a2d4f17c3cd5 (patch) | |
tree | ea1099a2ffc78c99939bbab38d2e038d040fb15d /Source/cmGlobalVisualStudio7Generator.cxx | |
parent | bbbdf54a3569aa97687091b7d6a03d645f8dabcb (diff) | |
download | CMake-268448b89151cf80ac9d4d0ea974a2d4f17c3cd5.zip CMake-268448b89151cf80ac9d4d0ea974a2d4f17c3cd5.tar.gz CMake-268448b89151cf80ac9d4d0ea974a2d4f17c3cd5.tar.bz2 |
Teach VS generators to set the MACHINE type correctly.
Diffstat (limited to 'Source/cmGlobalVisualStudio7Generator.cxx')
-rw-r--r-- | Source/cmGlobalVisualStudio7Generator.cxx | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/Source/cmGlobalVisualStudio7Generator.cxx b/Source/cmGlobalVisualStudio7Generator.cxx index ea9065e..9631e9a 100644 --- a/Source/cmGlobalVisualStudio7Generator.cxx +++ b/Source/cmGlobalVisualStudio7Generator.cxx @@ -31,7 +31,6 @@ void cmGlobalVisualStudio7Generator mf->AddDefinition("CMAKE_GENERATOR_RC", "rc"); mf->AddDefinition("CMAKE_GENERATOR_NO_COMPILER_ENV", "1"); mf->AddDefinition("CMAKE_GENERATOR_FC", "ifort"); - this->AddPlatformDefinitions(mf); // Create list of configurations requested by user's cache, if any. @@ -59,6 +58,8 @@ void cmGlobalVisualStudio7Generator void cmGlobalVisualStudio7Generator::AddPlatformDefinitions(cmMakefile* mf) { mf->AddDefinition("MSVC70", "1"); + mf->AddDefinition("MSVC_C_ARCHITECTURE_ID", "X86"); + mf->AddDefinition("MSVC_CXX_ARCHITECTURE_ID", "X86"); } std::string cmGlobalVisualStudio7Generator |