VS: Fix ArchitectureId of Visual Studio 10 IA64 generator

Replace "x64" with "Itanium" like at the VS 9 IA64 generator.
This commit is contained in:
Patrick Gansterer 2012-11-19 17:48:57 +01:00 committed by Brad King
parent 6f439b30cb
commit 8d42ab4260
1 changed files with 1 additions and 1 deletions

View File

@ -16,7 +16,7 @@
//----------------------------------------------------------------------------
cmGlobalVisualStudio10IA64Generator::cmGlobalVisualStudio10IA64Generator()
{
this->ArchitectureId = "x64";
this->ArchitectureId = "Itanium";
this->AdditionalPlatformDefinition = "CMAKE_FORCE_IA64";
}