diff options
author | Patrick Gansterer <paroga@paroga.com> | 2013-08-04 17:31:42 (GMT) |
---|---|---|
committer | Patrick Gansterer <paroga@paroga.com> | 2013-08-05 11:38:32 (GMT) |
commit | c90151bd82740ba00ce9d8e72f4026118d5dfa0d (patch) | |
tree | 3e13b22638fa032287a2142ce616a8ad1000ece6 /Source/cmGlobalVisualStudio11Generator.cxx | |
parent | 3873d29d9e2243baf843ebcc9b8dafbe51cb6ae9 (diff) | |
download | CMake-c90151bd82740ba00ce9d8e72f4026118d5dfa0d.zip CMake-c90151bd82740ba00ce9d8e72f4026118d5dfa0d.tar.gz CMake-c90151bd82740ba00ce9d8e72f4026118d5dfa0d.tar.bz2 |
VS: Unify how the name of the generator is specified
Use the value of the provided argument instead of using a fixed
character buffer. This aligns VS10+VS11+VS12 with VS8+VS9.
Diffstat (limited to 'Source/cmGlobalVisualStudio11Generator.cxx')
-rw-r--r-- | Source/cmGlobalVisualStudio11Generator.cxx | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/Source/cmGlobalVisualStudio11Generator.cxx b/Source/cmGlobalVisualStudio11Generator.cxx index 0986277..a014654 100644 --- a/Source/cmGlobalVisualStudio11Generator.cxx +++ b/Source/cmGlobalVisualStudio11Generator.cxx @@ -25,17 +25,17 @@ public: if(!strcmp(name, vs11Win32generatorName)) { return new cmGlobalVisualStudio11Generator( - vs11Win32generatorName, NULL, NULL); + name, NULL, NULL); } if(!strcmp(name, vs11Win64generatorName)) { return new cmGlobalVisualStudio11Generator( - vs11Win64generatorName, "x64", "CMAKE_FORCE_WIN64"); + name, "x64", "CMAKE_FORCE_WIN64"); } if(!strcmp(name, vs11ARMgeneratorName)) { return new cmGlobalVisualStudio11Generator( - vs11ARMgeneratorName, "ARM", NULL); + name, "ARM", NULL); } return 0; } |