diff options
author | Brad King <brad.king@kitware.com> | 2020-07-27 14:40:41 +0000 |
---|---|---|
committer | Kitware Robot <kwrobot@kitware.com> | 2020-07-27 10:40:56 -0400 |
commit | 11cf196fd2c8eca6427cf65755895641c60fe1fe (patch) | |
tree | d7d04a830582f818954f7bc094316165f9d1910e /Source/cmGlobalGenerator.cxx | |
parent | 097a302da0e829c83e28ec42737ce5285ec000fd (diff) | |
parent | 22bd2673889ac1ba49e8842959065068826f9368 (diff) | |
download | cmake-11cf196fd2c8eca6427cf65755895641c60fe1fe.tar.gz |
Merge topic 'EXCLUDE_FROM_ALL-genex'
22bd267388 Help: Add release note for EXCLUDE_FROM_ALL genex support
807c8aa9f0 Tests: Simplify RunCMake.ExcludeFromAll single-config case
36743436cf Tests: Fix RunCMake.ExcludeFromAll test program warning
99c131c5a3 cmGlobalGenerator: Fix spelling of EXCLUDE_FROM_ALL in error message
Acked-by: Kitware Robot <kwrobot@kitware.com>
Merge-request: !5049
Diffstat (limited to 'Source/cmGlobalGenerator.cxx')
-rw-r--r-- | Source/cmGlobalGenerator.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Source/cmGlobalGenerator.cxx b/Source/cmGlobalGenerator.cxx index 5c07e31b91..17c7e996b2 100644 --- a/Source/cmGlobalGenerator.cxx +++ b/Source/cmGlobalGenerator.cxx @@ -2189,7 +2189,7 @@ bool cmGlobalGenerator::IsExcluded(cmLocalGenerator* root, // configurations. if (trueCount && falseCount) { std::ostringstream e; - e << "The EXCLUDED_FROM_ALL property of target \"" << target->GetName() + e << "The EXCLUDE_FROM_ALL property of target \"" << target->GetName() << "\" varies by configuration. This is not supported by the \"" << root->GetGlobalGenerator()->GetName() << "\" generator."; mf->IssueMessage(MessageType::FATAL_ERROR, e.str()); |