summaryrefslogtreecommitdiffstats
path: root/Source
diff options
context:
space:
mode:
authorPatrick Gansterer <paroga@paroga.com>2012-11-19 16:48:57 (GMT)
committerBrad King <brad.king@kitware.com>2012-11-19 19:09:16 (GMT)
commit8d42ab426092f24f07b43ab2717f6071a7dc01e5 (patch)
tree92ecbebcb53daef92ba03c6adcc7b200d54f6adb /Source
parent6f439b30cb0b1a76c8e7ee8f169a0415a8a47c70 (diff)
downloadCMake-8d42ab426092f24f07b43ab2717f6071a7dc01e5.zip
CMake-8d42ab426092f24f07b43ab2717f6071a7dc01e5.tar.gz
CMake-8d42ab426092f24f07b43ab2717f6071a7dc01e5.tar.bz2
VS: Fix ArchitectureId of Visual Studio 10 IA64 generator
Replace "x64" with "Itanium" like at the VS 9 IA64 generator.
Diffstat (limited to 'Source')
-rw-r--r--Source/cmGlobalVisualStudio10IA64Generator.cxx2
1 files changed, 1 insertions, 1 deletions
diff --git a/Source/cmGlobalVisualStudio10IA64Generator.cxx b/Source/cmGlobalVisualStudio10IA64Generator.cxx
index fabe717..9a03d1b 100644
--- a/Source/cmGlobalVisualStudio10IA64Generator.cxx
+++ b/Source/cmGlobalVisualStudio10IA64Generator.cxx
@@ -16,7 +16,7 @@
//----------------------------------------------------------------------------
cmGlobalVisualStudio10IA64Generator::cmGlobalVisualStudio10IA64Generator()
{
- this->ArchitectureId = "x64";
+ this->ArchitectureId = "Itanium";
this->AdditionalPlatformDefinition = "CMAKE_FORCE_IA64";
}