Merge topic 'cmake-W-options'
975426ce cmake: Do not treat developer warnings as errors by default in scripts
This commit is contained in:
commit
4a1173fda0
@ -43,7 +43,7 @@ bool cmMessageCommand
|
|||||||
}
|
}
|
||||||
else if (*i == "AUTHOR_WARNING")
|
else if (*i == "AUTHOR_WARNING")
|
||||||
{
|
{
|
||||||
if (!this->Makefile->IsOn("CMAKE_SUPPRESS_DEVELOPER_ERRORS"))
|
if (this->Makefile->IsOn("CMAKE_ERROR_DEVELOPER_WARNINGS"))
|
||||||
{
|
{
|
||||||
fatal = true;
|
fatal = true;
|
||||||
type = cmake::AUTHOR_ERROR;
|
type = cmake::AUTHOR_ERROR;
|
||||||
|
@ -1289,7 +1289,7 @@ int cmake::Configure()
|
|||||||
" the author of the CMakeLists.txt files.",
|
" the author of the CMakeLists.txt files.",
|
||||||
cmState::INTERNAL);
|
cmState::INTERNAL);
|
||||||
this->CacheManager->
|
this->CacheManager->
|
||||||
AddCacheEntry("CMAKE_SUPPRESS_DEVELOPER_ERRORS", "TRUE",
|
AddCacheEntry("CMAKE_ERROR_DEVELOPER_WARNINGS", "FALSE",
|
||||||
"Suppress errors that are meant for"
|
"Suppress errors that are meant for"
|
||||||
" the author of the CMakeLists.txt files.",
|
" the author of the CMakeLists.txt files.",
|
||||||
cmState::INTERNAL);
|
cmState::INTERNAL);
|
||||||
@ -1328,7 +1328,7 @@ int cmake::Configure()
|
|||||||
else if (warningLevel == ERROR_LEVEL)
|
else if (warningLevel == ERROR_LEVEL)
|
||||||
{
|
{
|
||||||
this->CacheManager->
|
this->CacheManager->
|
||||||
AddCacheEntry("CMAKE_SUPPRESS_DEVELOPER_ERRORS", "FALSE",
|
AddCacheEntry("CMAKE_ERROR_DEVELOPER_WARNINGS", "TRUE",
|
||||||
"Suppress errors that are meant for"
|
"Suppress errors that are meant for"
|
||||||
" the author of the CMakeLists.txt files.",
|
" the author of the CMakeLists.txt files.",
|
||||||
cmState::INTERNAL);
|
cmState::INTERNAL);
|
||||||
@ -1676,11 +1676,11 @@ int cmake::Run(const std::vector<std::string>& args, bool noconfigure)
|
|||||||
}
|
}
|
||||||
|
|
||||||
// don't turn dev warnings into errors by default, if no value has been
|
// don't turn dev warnings into errors by default, if no value has been
|
||||||
// specified for the flag, enable it
|
// specified for the flag, disable it
|
||||||
if (!this->State->GetCacheEntryValue("CMAKE_SUPPRESS_DEVELOPER_ERRORS"))
|
if (!this->State->GetCacheEntryValue("CMAKE_ERROR_DEVELOPER_WARNINGS"))
|
||||||
{
|
{
|
||||||
this->CacheManager->
|
this->CacheManager->
|
||||||
AddCacheEntry("CMAKE_SUPPRESS_DEVELOPER_ERRORS", "TRUE",
|
AddCacheEntry("CMAKE_ERROR_DEVELOPER_WARNINGS", "FALSE",
|
||||||
"Suppress errors that are meant for"
|
"Suppress errors that are meant for"
|
||||||
" the author of the CMakeLists.txt files.",
|
" the author of the CMakeLists.txt files.",
|
||||||
cmState::INTERNAL);
|
cmState::INTERNAL);
|
||||||
|
Loading…
x
Reference in New Issue
Block a user