mirror of
https://github.com/Kitware/CMake.git
synced 2026-02-21 14:40:26 -06:00
Merge topic 'better_error_message_for_visibility_preset_property'
619416f8a3 The error message for VISIBILITY_PRESET now documents valid options.
Acked-by: Kitware Robot <kwrobot@kitware.com>
Merge-request: !3409
This commit is contained in:
@@ -1914,7 +1914,9 @@ static void AddVisibilityCompileOption(std::string& flags,
|
||||
strcmp(prop, "protected") != 0 && strcmp(prop, "internal") != 0) {
|
||||
std::ostringstream e;
|
||||
e << "Target " << target->GetName() << " uses unsupported value \"" << prop
|
||||
<< "\" for " << flagDefine << ".";
|
||||
<< "\" for " << flagDefine << "."
|
||||
<< " The supported values are: default, hidden, protected, and "
|
||||
"internal.";
|
||||
cmSystemTools::Error(e.str());
|
||||
return;
|
||||
}
|
||||
|
||||
@@ -1 +1 @@
|
||||
CMake Error: Target visibility_preset uses unsupported value \"hiden\" for CXX_VISIBILITY_PRESET
|
||||
CMake Error: Target visibility_preset uses unsupported value \"hiden\" for CXX_VISIBILITY_PRESET. The supported values are: default, hidden, protected, and internal.
|
||||
|
||||
Reference in New Issue
Block a user