diff options
author | Brad King <brad.king@kitware.com> | 2023-08-25 15:27:10 (GMT) |
---|---|---|
committer | Kitware Robot <kwrobot@kitware.com> | 2023-08-25 15:27:27 (GMT) |
commit | 863891adb232cd89830080c702361444f496b4fe (patch) | |
tree | 4a7c0cb3b7a33d3cf2cfe85f0d5075f7455605ae /Source/cmGlobalVisualStudio7Generator.cxx | |
parent | 5ae0030e90df07e56dc16b0210bd334650dcc9d4 (diff) | |
parent | 571b5e1f2c5569cd555377423930f8d61d5d2e99 (diff) | |
download | CMake-863891adb232cd89830080c702361444f496b4fe.zip CMake-863891adb232cd89830080c702361444f496b4fe.tar.gz CMake-863891adb232cd89830080c702361444f496b4fe.tar.bz2 |
Merge topic 'modules-better-messages'
571b5e1f2c cxxmodules: improve error messages for C++ module setup
8b4d32c18b cmStandardLevelResolver: add query for the effective standard level
17ddc4ac76 cmStandardLevelResolver: compare with static string literals
6f1dae2b01 cmStandardLevelResolver: use `cmStrCat` where possible
0d45d40e13 cmStandardLevelResolver: use character literals where possible
Acked-by: Kitware Robot <kwrobot@kitware.com>
Tested-by: buildbot <buildbot@kitware.com>
Merge-request: !8755
Diffstat (limited to 'Source/cmGlobalVisualStudio7Generator.cxx')
-rw-r--r-- | Source/cmGlobalVisualStudio7Generator.cxx | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Source/cmGlobalVisualStudio7Generator.cxx b/Source/cmGlobalVisualStudio7Generator.cxx index b2657a7..6953ec6 100644 --- a/Source/cmGlobalVisualStudio7Generator.cxx +++ b/Source/cmGlobalVisualStudio7Generator.cxx @@ -438,8 +438,8 @@ void cmGlobalVisualStudio7Generator::WriteTargetsToSolution( if (target->HaveCxx20ModuleSources() && !this->SupportsCxxModuleDyndep()) { root->GetMakefile()->IssueMessage( MessageType::FATAL_ERROR, - cmStrCat("The \"", target->GetName(), - "\" target contains C++ module sources which are not " + cmStrCat("The target named \"", target->GetName(), + "\" contains C++ sources that export modules which is not " "supported by the generator")); } |