diff options
author | Bill Hoffman <bill.hoffman@kitware.com> | 2009-11-23 19:09:24 (GMT) |
---|---|---|
committer | Bill Hoffman <bill.hoffman@kitware.com> | 2009-11-23 19:09:24 (GMT) |
commit | c4e002fd49abe57cdadabc2465ab453353cb8575 (patch) | |
tree | 99f047954ff7cf7d205ffa2817662bc2eb667f07 | |
parent | 9e852190b337349840b1c4eca60f4f4e954d90f7 (diff) | |
download | CMake-c4e002fd49abe57cdadabc2465ab453353cb8575.zip CMake-c4e002fd49abe57cdadabc2465ab453353cb8575.tar.gz CMake-c4e002fd49abe57cdadabc2465ab453353cb8575.tar.bz2 |
64 bit should be setting 64 bit and not 32 bit.
-rw-r--r-- | Source/cmGlobalVisualStudio10Win64Generator.cxx | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Source/cmGlobalVisualStudio10Win64Generator.cxx b/Source/cmGlobalVisualStudio10Win64Generator.cxx index 3737c14..1004fa9 100644 --- a/Source/cmGlobalVisualStudio10Win64Generator.cxx +++ b/Source/cmGlobalVisualStudio10Win64Generator.cxx @@ -34,6 +34,6 @@ void cmGlobalVisualStudio10Win64Generator { this->cmGlobalVisualStudio10Generator::AddPlatformDefinitions(mf); mf->AddDefinition("CMAKE_FORCE_WIN64", "TRUE"); - mf->AddDefinition("MSVC_C_ARCHITECTURE_ID", "X86"); - mf->AddDefinition("MSVC_CXX_ARCHITECTURE_ID", "X86"); + mf->AddDefinition("MSVC_C_ARCHITECTURE_ID", "x64"); + mf->AddDefinition("MSVC_CXX_ARCHITECTURE_ID", "x64"); } |