diff options
author | Kyle Edwards <kyle.edwards@kitware.com> | 2020-09-03 15:22:44 (GMT) |
---|---|---|
committer | Kyle Edwards <kyle.edwards@kitware.com> | 2020-10-05 13:49:59 (GMT) |
commit | 5a365420866849ed0c5cb54ebae5ca96bd5bd984 (patch) | |
tree | 55e2e46c032e2433eb0b7b591bfd2451b6a75663 /Source/cmGlobalVisualStudio14Generator.cxx | |
parent | 3059e6aed7ac3e773dd1f184558b9fd8a4b7b11e (diff) | |
download | CMake-5a365420866849ed0c5cb54ebae5ca96bd5bd984.zip CMake-5a365420866849ed0c5cb54ebae5ca96bd5bd984.tar.gz CMake-5a365420866849ed0c5cb54ebae5ca96bd5bd984.tar.bz2 |
Refactor: Add allowArch parameter to cmake::CreateGlobalGenerator()
Diffstat (limited to 'Source/cmGlobalVisualStudio14Generator.cxx')
-rw-r--r-- | Source/cmGlobalVisualStudio14Generator.cxx | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Source/cmGlobalVisualStudio14Generator.cxx b/Source/cmGlobalVisualStudio14Generator.cxx index a12b7e1..e17c6d7 100644 --- a/Source/cmGlobalVisualStudio14Generator.cxx +++ b/Source/cmGlobalVisualStudio14Generator.cxx @@ -30,7 +30,7 @@ class cmGlobalVisualStudio14Generator::Factory { public: std::unique_ptr<cmGlobalGenerator> CreateGlobalGenerator( - const std::string& name, cmake* cm) const override + const std::string& name, bool allowArch, cmake* cm) const override { std::string genName; const char* p = cmVS14GenName(name, genName); @@ -41,7 +41,7 @@ public: return std::unique_ptr<cmGlobalGenerator>( new cmGlobalVisualStudio14Generator(cm, genName, "")); } - if (*p++ != ' ') { + if (!allowArch || *p++ != ' ') { return std::unique_ptr<cmGlobalGenerator>(); } if (strcmp(p, "Win64") == 0) { |