diff options
author | Ben Boeckel <ben.boeckel@kitware.com> | 2023-07-27 18:39:37 (GMT) |
---|---|---|
committer | Ben Boeckel <ben.boeckel@kitware.com> | 2023-07-27 23:10:39 (GMT) |
commit | a5ba00bdf875cb1290b90abb8c9f55c1b7f88876 (patch) | |
tree | acfcd3adec5158ed3c5eb4882ee05fb4d1bf6bfa /Source/cmGlobalVisualStudio14Generator.cxx | |
parent | 3f1378fbcab72a849908bbc988254f392d04c41a (diff) | |
download | CMake-a5ba00bdf875cb1290b90abb8c9f55c1b7f88876.zip CMake-a5ba00bdf875cb1290b90abb8c9f55c1b7f88876.tar.gz CMake-a5ba00bdf875cb1290b90abb8c9f55c1b7f88876.tar.bz2 |
strings: combine string literals where possible
Diffstat (limited to 'Source/cmGlobalVisualStudio14Generator.cxx')
-rw-r--r-- | Source/cmGlobalVisualStudio14Generator.cxx | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/Source/cmGlobalVisualStudio14Generator.cxx b/Source/cmGlobalVisualStudio14Generator.cxx index d2e9cb2..7cb5a66 100644 --- a/Source/cmGlobalVisualStudio14Generator.cxx +++ b/Source/cmGlobalVisualStudio14Generator.cxx @@ -182,7 +182,8 @@ bool cmGlobalVisualStudio14Generator::InitializeWindowsStore(cmMakefile* mf) << this->SystemVersion << "'. Check CMAKE_SYSTEM_VERSION."; } else { e << "A Windows Store component with CMake requires both the Windows " - << "Desktop SDK as well as the Windows Store '" << this->SystemVersion + "Desktop SDK as well as the Windows Store '" + << this->SystemVersion << "' SDK. Please make sure that you have both installed"; } mf->IssueMessage(MessageType::FATAL_ERROR, e.str()); |