summaryrefslogtreecommitdiffstats
path: root/Source/cmGlobalVisualStudio8Win64Generator.cxx
diff options
context:
space:
mode:
authorPatrick Gansterer <paroga@paroga.com>2010-08-22 19:23:11 (GMT)
committerBrad King <brad.king@kitware.com>2010-08-26 20:39:01 (GMT)
commitef4394defa22ba4288731ae65285c2f33e9e360a (patch)
tree09d288877891df1cef4e702b40ec263d0dd75596 /Source/cmGlobalVisualStudio8Win64Generator.cxx
parent4fec681fa7cdc89a4aa40c95fa0156c566ff8722 (diff)
downloadCMake-ef4394defa22ba4288731ae65285c2f33e9e360a.zip
CMake-ef4394defa22ba4288731ae65285c2f33e9e360a.tar.gz
CMake-ef4394defa22ba4288731ae65285c2f33e9e360a.tar.bz2
VS: Add ArchitectureId to VS 8 and 9 generators
Avoid duplicate architecture string literals.
Diffstat (limited to 'Source/cmGlobalVisualStudio8Win64Generator.cxx')
-rw-r--r--Source/cmGlobalVisualStudio8Win64Generator.cxx3
1 files changed, 1 insertions, 2 deletions
diff --git a/Source/cmGlobalVisualStudio8Win64Generator.cxx b/Source/cmGlobalVisualStudio8Win64Generator.cxx
index ea2c65f..3469b17 100644
--- a/Source/cmGlobalVisualStudio8Win64Generator.cxx
+++ b/Source/cmGlobalVisualStudio8Win64Generator.cxx
@@ -19,6 +19,7 @@
cmGlobalVisualStudio8Win64Generator::cmGlobalVisualStudio8Win64Generator()
{
+ this->ArchitectureId = "x64";
}
///! Create a local generator appropriate to this Global Generator
@@ -47,6 +48,4 @@ void cmGlobalVisualStudio8Win64Generator
{
this->cmGlobalVisualStudio8Generator::AddPlatformDefinitions(mf);
mf->AddDefinition("CMAKE_FORCE_WIN64", "TRUE");
- mf->AddDefinition("MSVC_C_ARCHITECTURE_ID", "x64");
- mf->AddDefinition("MSVC_CXX_ARCHITECTURE_ID", "x64");
}