mirror of
https://github.com/Kitware/CMake.git
synced 2026-05-06 14:19:59 -05:00
Merge topic 'messenger-no-cmake'
cc2a5261f8 Factor out enum MessageType into dedicated header
Acked-by: Kitware Robot <kwrobot@kitware.com>
Merge-request: !2654
This commit is contained in:
@@ -298,6 +298,7 @@ set(SRCS
|
||||
cmMakefileExecutableTargetGenerator.cxx
|
||||
cmMakefileLibraryTargetGenerator.cxx
|
||||
cmMakefileUtilityTargetGenerator.cxx
|
||||
cmMessageType.h
|
||||
cmMessenger.cxx
|
||||
cmMessenger.h
|
||||
cmMSVC60LinkLineComputer.cxx
|
||||
|
||||
@@ -7,6 +7,7 @@
|
||||
#include "cmCTestGenericHandler.h"
|
||||
#include "cmGlobalGenerator.h"
|
||||
#include "cmMakefile.h"
|
||||
#include "cmMessageType.h"
|
||||
#include "cmSystemTools.h"
|
||||
#include "cmake.h"
|
||||
|
||||
@@ -95,7 +96,7 @@ cmCTestGenericHandler* cmCTestBuildCommand::InitializeHandler()
|
||||
std::string e = "could not create generator named \"";
|
||||
e += cmakeGeneratorName;
|
||||
e += "\"";
|
||||
this->Makefile->IssueMessage(cmake::FATAL_ERROR, e);
|
||||
this->Makefile->IssueMessage(MessageType::FATAL_ERROR, e);
|
||||
cmSystemTools::SetFatalErrorOccured();
|
||||
return nullptr;
|
||||
}
|
||||
|
||||
@@ -5,9 +5,9 @@
|
||||
#include "cmCTest.h"
|
||||
#include "cmCTestGenericHandler.h"
|
||||
#include "cmMakefile.h"
|
||||
#include "cmMessageType.h"
|
||||
#include "cmSystemTools.h"
|
||||
#include "cmWorkingDirectory.h"
|
||||
#include "cmake.h"
|
||||
|
||||
#include <cstring>
|
||||
#include <sstream>
|
||||
@@ -289,7 +289,7 @@ bool cmCTestHandlerCommand::CheckArgumentValue(std::string const& arg)
|
||||
if (this->Values[k]) {
|
||||
std::ostringstream e;
|
||||
e << "Called with more than one value for " << this->Arguments[k];
|
||||
this->Makefile->IssueMessage(cmake::FATAL_ERROR, e.str());
|
||||
this->Makefile->IssueMessage(MessageType::FATAL_ERROR, e.str());
|
||||
this->ArgumentDoing = ArgumentDoingError;
|
||||
return true;
|
||||
}
|
||||
|
||||
@@ -6,8 +6,8 @@
|
||||
#include "cmCTestGenericHandler.h"
|
||||
#include "cmCTestSubmitHandler.h"
|
||||
#include "cmMakefile.h"
|
||||
#include "cmMessageType.h"
|
||||
#include "cmSystemTools.h"
|
||||
#include "cmake.h"
|
||||
|
||||
#include <sstream>
|
||||
|
||||
@@ -203,7 +203,7 @@ bool cmCTestSubmitCommand::CheckArgumentValue(std::string const& arg)
|
||||
} else {
|
||||
std::ostringstream e;
|
||||
e << "Part name \"" << arg << "\" is invalid.";
|
||||
this->Makefile->IssueMessage(cmake::FATAL_ERROR, e.str());
|
||||
this->Makefile->IssueMessage(MessageType::FATAL_ERROR, e.str());
|
||||
this->ArgumentDoing = ArgumentDoingError;
|
||||
}
|
||||
return true;
|
||||
@@ -216,7 +216,7 @@ bool cmCTestSubmitCommand::CheckArgumentValue(std::string const& arg)
|
||||
std::ostringstream e;
|
||||
e << "File \"" << arg << "\" does not exist. Cannot submit "
|
||||
<< "a non-existent file.";
|
||||
this->Makefile->IssueMessage(cmake::FATAL_ERROR, e.str());
|
||||
this->Makefile->IssueMessage(MessageType::FATAL_ERROR, e.str());
|
||||
this->ArgumentDoing = ArgumentDoingError;
|
||||
}
|
||||
return true;
|
||||
|
||||
@@ -9,8 +9,8 @@
|
||||
#include "cmCTestGenericHandler.h"
|
||||
#include "cmCTestUploadHandler.h"
|
||||
#include "cmMakefile.h"
|
||||
#include "cmMessageType.h"
|
||||
#include "cmSystemTools.h"
|
||||
#include "cmake.h"
|
||||
|
||||
cmCTestGenericHandler* cmCTestUploadCommand::InitializeHandler()
|
||||
{
|
||||
@@ -58,7 +58,7 @@ bool cmCTestUploadCommand::CheckArgumentValue(std::string const& arg)
|
||||
std::ostringstream e;
|
||||
e << "File \"" << arg << "\" does not exist. Cannot submit "
|
||||
<< "a non-existent file.";
|
||||
this->Makefile->IssueMessage(cmake::FATAL_ERROR, e.str());
|
||||
this->Makefile->IssueMessage(MessageType::FATAL_ERROR, e.str());
|
||||
this->ArgumentDoing = ArgumentDoingError;
|
||||
return false;
|
||||
}
|
||||
|
||||
@@ -10,11 +10,11 @@
|
||||
#include "cmCustomCommandLines.h"
|
||||
#include "cmGlobalGenerator.h"
|
||||
#include "cmMakefile.h"
|
||||
#include "cmMessageType.h"
|
||||
#include "cmPolicies.h"
|
||||
#include "cmSourceFile.h"
|
||||
#include "cmSystemTools.h"
|
||||
#include "cmTarget.h"
|
||||
#include "cmake.h"
|
||||
|
||||
class cmExecutionStatus;
|
||||
|
||||
@@ -361,7 +361,7 @@ bool cmAddCustomCommandCommand::InitialPass(
|
||||
} else {
|
||||
bool issueMessage = true;
|
||||
std::ostringstream e;
|
||||
cmake::MessageType messageType = cmake::AUTHOR_WARNING;
|
||||
MessageType messageType = MessageType::AUTHOR_WARNING;
|
||||
switch (this->Makefile->GetPolicyStatus(cmPolicies::CMP0050)) {
|
||||
case cmPolicies::WARN:
|
||||
e << cmPolicies::GetPolicyWarning(cmPolicies::CMP0050) << "\n";
|
||||
@@ -372,7 +372,7 @@ bool cmAddCustomCommandCommand::InitialPass(
|
||||
case cmPolicies::REQUIRED_ALWAYS:
|
||||
case cmPolicies::REQUIRED_IF_USED:
|
||||
case cmPolicies::NEW:
|
||||
messageType = cmake::FATAL_ERROR;
|
||||
messageType = MessageType::FATAL_ERROR;
|
||||
break;
|
||||
}
|
||||
|
||||
@@ -380,7 +380,7 @@ bool cmAddCustomCommandCommand::InitialPass(
|
||||
e << "The SOURCE signatures of add_custom_command are no longer "
|
||||
"supported.";
|
||||
this->Makefile->IssueMessage(messageType, e.str());
|
||||
if (messageType == cmake::FATAL_ERROR) {
|
||||
if (messageType == MessageType::FATAL_ERROR) {
|
||||
return false;
|
||||
}
|
||||
}
|
||||
|
||||
@@ -9,10 +9,10 @@
|
||||
#include "cmGeneratorExpression.h"
|
||||
#include "cmGlobalGenerator.h"
|
||||
#include "cmMakefile.h"
|
||||
#include "cmMessageType.h"
|
||||
#include "cmStateTypes.h"
|
||||
#include "cmSystemTools.h"
|
||||
#include "cmTarget.h"
|
||||
#include "cmake.h"
|
||||
|
||||
class cmExecutionStatus;
|
||||
|
||||
@@ -183,19 +183,19 @@ bool cmAddCustomTargetCommand::InitialPass(
|
||||
|
||||
if (commandLines.empty() && !byproducts.empty()) {
|
||||
this->Makefile->IssueMessage(
|
||||
cmake::FATAL_ERROR,
|
||||
MessageType::FATAL_ERROR,
|
||||
"BYPRODUCTS may not be specified without any COMMAND");
|
||||
return true;
|
||||
}
|
||||
if (commandLines.empty() && uses_terminal) {
|
||||
this->Makefile->IssueMessage(
|
||||
cmake::FATAL_ERROR,
|
||||
MessageType::FATAL_ERROR,
|
||||
"USES_TERMINAL may not be specified without any COMMAND");
|
||||
return true;
|
||||
}
|
||||
if (commandLines.empty() && command_expand_lists) {
|
||||
this->Makefile->IssueMessage(
|
||||
cmake::FATAL_ERROR,
|
||||
MessageType::FATAL_ERROR,
|
||||
"COMMAND_EXPAND_LISTS may not be specified without any COMMAND");
|
||||
return true;
|
||||
}
|
||||
|
||||
@@ -5,8 +5,8 @@
|
||||
#include <sstream>
|
||||
|
||||
#include "cmMakefile.h"
|
||||
#include "cmMessageType.h"
|
||||
#include "cmTarget.h"
|
||||
#include "cmake.h"
|
||||
|
||||
class cmExecutionStatus;
|
||||
|
||||
@@ -24,7 +24,7 @@ bool cmAddDependenciesCommand::InitialPass(
|
||||
std::ostringstream e;
|
||||
e << "Cannot add target-level dependencies to alias target \""
|
||||
<< target_name << "\".\n";
|
||||
this->Makefile->IssueMessage(cmake::FATAL_ERROR, e.str());
|
||||
this->Makefile->IssueMessage(MessageType::FATAL_ERROR, e.str());
|
||||
}
|
||||
if (cmTarget* target = this->Makefile->FindTargetToUse(target_name)) {
|
||||
std::vector<std::string>::const_iterator s = args.begin();
|
||||
@@ -40,7 +40,7 @@ bool cmAddDependenciesCommand::InitialPass(
|
||||
<< "by the add_executable, add_library, or add_custom_target commands. "
|
||||
<< "If you want to add file-level dependencies see the DEPENDS option "
|
||||
<< "of the add_custom_target and add_custom_command commands.";
|
||||
this->Makefile->IssueMessage(cmake::FATAL_ERROR, e.str());
|
||||
this->Makefile->IssueMessage(MessageType::FATAL_ERROR, e.str());
|
||||
}
|
||||
|
||||
return true;
|
||||
|
||||
@@ -7,11 +7,11 @@
|
||||
#include "cmGeneratorExpression.h"
|
||||
#include "cmGlobalGenerator.h"
|
||||
#include "cmMakefile.h"
|
||||
#include "cmMessageType.h"
|
||||
#include "cmState.h"
|
||||
#include "cmStateTypes.h"
|
||||
#include "cmSystemTools.h"
|
||||
#include "cmTarget.h"
|
||||
#include "cmake.h"
|
||||
|
||||
class cmExecutionStatus;
|
||||
|
||||
@@ -259,7 +259,7 @@ bool cmAddLibraryCommand::InitialPass(std::vector<std::string> const& args,
|
||||
<< (type == cmStateEnums::SHARED_LIBRARY ? "SHARED" : "MODULE")
|
||||
<< " option but the target platform does not support dynamic linking. "
|
||||
"Building a STATIC library instead. This may lead to problems.";
|
||||
this->Makefile->IssueMessage(cmake::AUTHOR_WARNING, w.str());
|
||||
this->Makefile->IssueMessage(MessageType::AUTHOR_WARNING, w.str());
|
||||
type = cmStateEnums::STATIC_LIBRARY;
|
||||
}
|
||||
|
||||
@@ -275,7 +275,7 @@ bool cmAddLibraryCommand::InitialPass(std::vector<std::string> const& args,
|
||||
if (!this->Makefile->GetGlobalGenerator()->HasKnownObjectFileLocation(
|
||||
&reason)) {
|
||||
this->Makefile->IssueMessage(
|
||||
cmake::FATAL_ERROR,
|
||||
MessageType::FATAL_ERROR,
|
||||
"The OBJECT library type may not be used for IMPORTED libraries" +
|
||||
reason + ".");
|
||||
return true;
|
||||
@@ -307,7 +307,7 @@ bool cmAddLibraryCommand::InitialPass(std::vector<std::string> const& args,
|
||||
// A non-imported target may not have UNKNOWN type.
|
||||
if (type == cmStateEnums::UNKNOWN_LIBRARY) {
|
||||
this->Makefile->IssueMessage(
|
||||
cmake::FATAL_ERROR,
|
||||
MessageType::FATAL_ERROR,
|
||||
"The UNKNOWN library type may be used only for IMPORTED libraries.");
|
||||
return true;
|
||||
}
|
||||
|
||||
@@ -6,8 +6,8 @@
|
||||
|
||||
#include "cmExecutionStatus.h"
|
||||
#include "cmMakefile.h"
|
||||
#include "cmMessageType.h"
|
||||
#include "cmPolicies.h"
|
||||
#include "cmake.h"
|
||||
|
||||
// cmBreakCommand
|
||||
bool cmBreakCommand::InitialPass(std::vector<std::string> const& args,
|
||||
@@ -16,7 +16,7 @@ bool cmBreakCommand::InitialPass(std::vector<std::string> const& args,
|
||||
if (!this->Makefile->IsLoopBlock()) {
|
||||
bool issueMessage = true;
|
||||
std::ostringstream e;
|
||||
cmake::MessageType messageType = cmake::AUTHOR_WARNING;
|
||||
MessageType messageType = MessageType::AUTHOR_WARNING;
|
||||
switch (this->Makefile->GetPolicyStatus(cmPolicies::CMP0055)) {
|
||||
case cmPolicies::WARN:
|
||||
e << cmPolicies::GetPolicyWarning(cmPolicies::CMP0055) << "\n";
|
||||
@@ -27,7 +27,7 @@ bool cmBreakCommand::InitialPass(std::vector<std::string> const& args,
|
||||
case cmPolicies::REQUIRED_ALWAYS:
|
||||
case cmPolicies::REQUIRED_IF_USED:
|
||||
case cmPolicies::NEW:
|
||||
messageType = cmake::FATAL_ERROR;
|
||||
messageType = MessageType::FATAL_ERROR;
|
||||
break;
|
||||
}
|
||||
|
||||
@@ -35,7 +35,7 @@ bool cmBreakCommand::InitialPass(std::vector<std::string> const& args,
|
||||
e << "A BREAK command was found outside of a proper "
|
||||
"FOREACH or WHILE loop scope.";
|
||||
this->Makefile->IssueMessage(messageType, e.str());
|
||||
if (messageType == cmake::FATAL_ERROR) {
|
||||
if (messageType == MessageType::FATAL_ERROR) {
|
||||
return false;
|
||||
}
|
||||
}
|
||||
@@ -46,7 +46,7 @@ bool cmBreakCommand::InitialPass(std::vector<std::string> const& args,
|
||||
if (!args.empty()) {
|
||||
bool issueMessage = true;
|
||||
std::ostringstream e;
|
||||
cmake::MessageType messageType = cmake::AUTHOR_WARNING;
|
||||
MessageType messageType = MessageType::AUTHOR_WARNING;
|
||||
switch (this->Makefile->GetPolicyStatus(cmPolicies::CMP0055)) {
|
||||
case cmPolicies::WARN:
|
||||
e << cmPolicies::GetPolicyWarning(cmPolicies::CMP0055) << "\n";
|
||||
@@ -57,14 +57,14 @@ bool cmBreakCommand::InitialPass(std::vector<std::string> const& args,
|
||||
case cmPolicies::REQUIRED_ALWAYS:
|
||||
case cmPolicies::REQUIRED_IF_USED:
|
||||
case cmPolicies::NEW:
|
||||
messageType = cmake::FATAL_ERROR;
|
||||
messageType = MessageType::FATAL_ERROR;
|
||||
break;
|
||||
}
|
||||
|
||||
if (issueMessage) {
|
||||
e << "The BREAK command does not accept any arguments.";
|
||||
this->Makefile->IssueMessage(messageType, e.str());
|
||||
if (messageType == cmake::FATAL_ERROR) {
|
||||
if (messageType == MessageType::FATAL_ERROR) {
|
||||
return false;
|
||||
}
|
||||
}
|
||||
|
||||
@@ -6,9 +6,9 @@
|
||||
|
||||
#include "cmGlobalGenerator.h"
|
||||
#include "cmMakefile.h"
|
||||
#include "cmMessageType.h"
|
||||
#include "cmStateTypes.h"
|
||||
#include "cmSystemTools.h"
|
||||
#include "cmake.h"
|
||||
|
||||
class cmExecutionStatus;
|
||||
|
||||
@@ -84,7 +84,7 @@ bool cmBuildCommand::MainSignature(std::vector<std::string> const& args)
|
||||
|
||||
if (!project_name.empty()) {
|
||||
this->Makefile->IssueMessage(
|
||||
cmake::AUTHOR_WARNING,
|
||||
MessageType::AUTHOR_WARNING,
|
||||
"Ignoring PROJECT_NAME option because it has no effect.");
|
||||
}
|
||||
|
||||
|
||||
@@ -6,9 +6,9 @@
|
||||
#include <stdio.h>
|
||||
|
||||
#include "cmMakefile.h"
|
||||
#include "cmMessageType.h"
|
||||
#include "cmSystemTools.h"
|
||||
#include "cmVersion.h"
|
||||
#include "cmake.h"
|
||||
|
||||
class cmExecutionStatus;
|
||||
|
||||
@@ -96,7 +96,7 @@ bool cmCMakeMinimumRequired::InitialPass(std::vector<std::string> const& args,
|
||||
e << "CMake " << version_min
|
||||
<< " or higher is required. You are running version "
|
||||
<< cmVersion::GetCMakeVersion();
|
||||
this->Makefile->IssueMessage(cmake::FATAL_ERROR, e.str());
|
||||
this->Makefile->IssueMessage(MessageType::FATAL_ERROR, e.str());
|
||||
cmSystemTools::SetFatalErrorOccured();
|
||||
return true;
|
||||
}
|
||||
@@ -108,7 +108,7 @@ bool cmCMakeMinimumRequired::InitialPass(std::vector<std::string> const& args,
|
||||
|
||||
if (required_major < 2 || (required_major == 2 && required_minor < 4)) {
|
||||
this->Makefile->IssueMessage(
|
||||
cmake::AUTHOR_WARNING,
|
||||
MessageType::AUTHOR_WARNING,
|
||||
"Compatibility with CMake < 2.4 is not supported by CMake >= 3.0.");
|
||||
this->Makefile->SetPolicyVersion("2.4", version_max);
|
||||
} else {
|
||||
|
||||
@@ -5,10 +5,10 @@
|
||||
#include <sstream>
|
||||
|
||||
#include "cmMakefile.h"
|
||||
#include "cmMessageType.h"
|
||||
#include "cmPolicies.h"
|
||||
#include "cmState.h"
|
||||
#include "cmStateTypes.h"
|
||||
#include "cmake.h"
|
||||
|
||||
class cmExecutionStatus;
|
||||
|
||||
@@ -146,7 +146,7 @@ bool cmCMakePolicyCommand::HandleGetMode(std::vector<std::string> const& args)
|
||||
<< "The call to cmake_policy(GET " << id << " ...) at which this "
|
||||
<< "error appears requests the policy, and this version of CMake "
|
||||
<< "requires that the policy be set to NEW before it is checked.";
|
||||
this->Makefile->IssueMessage(cmake::FATAL_ERROR, e.str());
|
||||
this->Makefile->IssueMessage(MessageType::FATAL_ERROR, e.str());
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
@@ -347,7 +347,7 @@ static void addLinkLibrary(cmMakefile* mf, std::string const& target,
|
||||
std::ostringstream e;
|
||||
e << "Attempt to add link library \"" << lib << "\" to target \"" << target
|
||||
<< "\" which is not built in this directory.";
|
||||
mf->IssueMessage(cmake::FATAL_ERROR, e.str());
|
||||
mf->IssueMessage(MessageType::FATAL_ERROR, e.str());
|
||||
return;
|
||||
}
|
||||
|
||||
@@ -362,7 +362,7 @@ static void addLinkLibrary(cmMakefile* mf, std::string const& target,
|
||||
<< " may not be linked into another target. "
|
||||
<< "One may link only to STATIC or SHARED libraries, or "
|
||||
<< "to executables with the ENABLE_EXPORTS property set.";
|
||||
mf->IssueMessage(cmake::FATAL_ERROR, e.str());
|
||||
mf->IssueMessage(MessageType::FATAL_ERROR, e.str());
|
||||
}
|
||||
|
||||
t->AddLinkLibrary(*mf, lib, llt);
|
||||
|
||||
@@ -11,6 +11,7 @@
|
||||
#include <string>
|
||||
|
||||
#include "cmGeneratedFileStream.h"
|
||||
#include "cmMessageType.h"
|
||||
#include "cmMessenger.h"
|
||||
#include "cmState.h"
|
||||
#include "cmSystemTools.h"
|
||||
@@ -478,7 +479,7 @@ void cmCacheManager::OutputNewlineTruncationWarning(std::ostream& fout,
|
||||
std::string message = "Value of ";
|
||||
message += key;
|
||||
message += " contained a newline; truncating";
|
||||
messenger->IssueMessage(cmake::WARNING, message);
|
||||
messenger->IssueMessage(MessageType::WARNING, message);
|
||||
}
|
||||
|
||||
std::string comment = "WARNING: Value of ";
|
||||
|
||||
@@ -8,6 +8,7 @@
|
||||
#include "cmGlobalGenerator.h"
|
||||
#include "cmLocalGenerator.h"
|
||||
#include "cmMakefile.h"
|
||||
#include "cmMessageType.h"
|
||||
#include "cmOrderDirectories.h"
|
||||
#include "cmOutputConverter.h"
|
||||
#include "cmPolicies.h"
|
||||
@@ -522,7 +523,7 @@ bool cmComputeLinkInformation::Compute()
|
||||
"name."
|
||||
;
|
||||
/* clang-format on */
|
||||
this->CMakeInstance->IssueMessage(cmake::AUTHOR_WARNING, w.str(),
|
||||
this->CMakeInstance->IssueMessage(MessageType::AUTHOR_WARNING, w.str(),
|
||||
this->Target->GetBacktrace());
|
||||
}
|
||||
|
||||
@@ -1382,7 +1383,7 @@ void cmComputeLinkInformation::HandleBadFullItem(std::string const& item,
|
||||
<< " " << item << "\n"
|
||||
<< "which is a full-path but not a valid library file name.";
|
||||
/* clang-format on */
|
||||
this->CMakeInstance->IssueMessage(cmake::AUTHOR_WARNING, w.str(),
|
||||
this->CMakeInstance->IssueMessage(MessageType::AUTHOR_WARNING, w.str(),
|
||||
this->Target->GetBacktrace());
|
||||
}
|
||||
}
|
||||
@@ -1401,7 +1402,7 @@ void cmComputeLinkInformation::HandleBadFullItem(std::string const& item,
|
||||
<< " " << item << "\n"
|
||||
<< "which is a full-path but not a valid library file name.";
|
||||
/* clang-format on */
|
||||
this->CMakeInstance->IssueMessage(cmake::FATAL_ERROR, e.str(),
|
||||
this->CMakeInstance->IssueMessage(MessageType::FATAL_ERROR, e.str(),
|
||||
this->Target->GetBacktrace());
|
||||
} break;
|
||||
}
|
||||
@@ -1424,7 +1425,7 @@ bool cmComputeLinkInformation::FinishLinkerSearchDirectories()
|
||||
"CMP0003-WARNING-GIVEN", "1");
|
||||
std::ostringstream w;
|
||||
this->PrintLinkPolicyDiagnosis(w);
|
||||
this->CMakeInstance->IssueMessage(cmake::AUTHOR_WARNING, w.str(),
|
||||
this->CMakeInstance->IssueMessage(MessageType::AUTHOR_WARNING, w.str(),
|
||||
this->Target->GetBacktrace());
|
||||
}
|
||||
case cmPolicies::OLD:
|
||||
@@ -1439,7 +1440,7 @@ bool cmComputeLinkInformation::FinishLinkerSearchDirectories()
|
||||
std::ostringstream e;
|
||||
e << cmPolicies::GetRequiredPolicyError(cmPolicies::CMP0003) << "\n";
|
||||
this->PrintLinkPolicyDiagnosis(e);
|
||||
this->CMakeInstance->IssueMessage(cmake::FATAL_ERROR, e.str(),
|
||||
this->CMakeInstance->IssueMessage(MessageType::FATAL_ERROR, e.str(),
|
||||
this->Target->GetBacktrace());
|
||||
return false;
|
||||
}
|
||||
|
||||
@@ -9,6 +9,7 @@
|
||||
#include "cmListFileCache.h"
|
||||
#include "cmLocalGenerator.h"
|
||||
#include "cmMakefile.h"
|
||||
#include "cmMessageType.h"
|
||||
#include "cmPolicies.h"
|
||||
#include "cmSourceFile.h"
|
||||
#include "cmState.h"
|
||||
@@ -217,7 +218,7 @@ void cmComputeTargetDepends::CollectTargetDepends(int depender_index)
|
||||
depender->GetType() != cmStateEnums::MODULE_LIBRARY &&
|
||||
depender->GetType() != cmStateEnums::OBJECT_LIBRARY) {
|
||||
this->GlobalGenerator->GetCMakeInstance()->IssueMessage(
|
||||
cmake::FATAL_ERROR,
|
||||
MessageType::FATAL_ERROR,
|
||||
"Only executables and libraries may reference target objects.",
|
||||
depender->GetBacktrace());
|
||||
return;
|
||||
@@ -314,7 +315,7 @@ void cmComputeTargetDepends::AddTargetDepend(int depender_index,
|
||||
|
||||
if (!dependee && !linking &&
|
||||
(depender->GetType() != cmStateEnums::GLOBAL_TARGET)) {
|
||||
cmake::MessageType messageType = cmake::AUTHOR_WARNING;
|
||||
MessageType messageType = MessageType::AUTHOR_WARNING;
|
||||
bool issueMessage = false;
|
||||
std::ostringstream e;
|
||||
switch (depender->GetPolicyStatusCMP0046()) {
|
||||
@@ -327,7 +328,7 @@ void cmComputeTargetDepends::AddTargetDepend(int depender_index,
|
||||
case cmPolicies::REQUIRED_IF_USED:
|
||||
case cmPolicies::REQUIRED_ALWAYS:
|
||||
issueMessage = true;
|
||||
messageType = cmake::FATAL_ERROR;
|
||||
messageType = MessageType::FATAL_ERROR;
|
||||
}
|
||||
if (issueMessage) {
|
||||
cmake* cm = this->GlobalGenerator->GetCMakeInstance();
|
||||
|
||||
@@ -11,8 +11,10 @@
|
||||
|
||||
#include "cmAlgorithms.h"
|
||||
#include "cmMakefile.h"
|
||||
#include "cmMessageType.h"
|
||||
#include "cmState.h"
|
||||
#include "cmSystemTools.h"
|
||||
#include "cmake.h"
|
||||
|
||||
class cmCommand;
|
||||
class cmTest;
|
||||
@@ -81,7 +83,7 @@ cmConditionEvaluator::cmConditionEvaluator(cmMakefile& makefile,
|
||||
|
||||
bool cmConditionEvaluator::IsTrue(
|
||||
const std::vector<cmExpandedCommandArgument>& args, std::string& errorString,
|
||||
cmake::MessageType& status)
|
||||
MessageType& status)
|
||||
{
|
||||
errorString.clear();
|
||||
|
||||
@@ -123,7 +125,7 @@ bool cmConditionEvaluator::IsTrue(
|
||||
// now at the end there should only be one argument left
|
||||
if (newArgs.size() != 1) {
|
||||
errorString = "Unknown arguments specified";
|
||||
status = cmake::FATAL_ERROR;
|
||||
status = MessageType::FATAL_ERROR;
|
||||
return false;
|
||||
}
|
||||
|
||||
@@ -155,7 +157,7 @@ const char* cmConditionEvaluator::GetDefinitionIfUnquoted(
|
||||
"Since the policy is not set the OLD behavior will be used.";
|
||||
|
||||
this->Makefile.GetCMakeInstance()->IssueMessage(
|
||||
cmake::AUTHOR_WARNING, e.str(), this->Backtrace);
|
||||
MessageType::AUTHOR_WARNING, e.str(), this->Backtrace);
|
||||
}
|
||||
}
|
||||
|
||||
@@ -199,7 +201,7 @@ bool cmConditionEvaluator::IsKeyword(std::string const& keyword,
|
||||
"Since the policy is not set the OLD behavior will be used.";
|
||||
|
||||
this->Makefile.GetCMakeInstance()->IssueMessage(
|
||||
cmake::AUTHOR_WARNING, e.str(), this->Backtrace);
|
||||
MessageType::AUTHOR_WARNING, e.str(), this->Backtrace);
|
||||
}
|
||||
}
|
||||
|
||||
@@ -269,7 +271,7 @@ bool cmConditionEvaluator::GetBooleanValueOld(
|
||||
// returns the resulting boolean value
|
||||
bool cmConditionEvaluator::GetBooleanValueWithAutoDereference(
|
||||
cmExpandedCommandArgument& newArg, std::string& errorString,
|
||||
cmake::MessageType& status, bool oneArg) const
|
||||
MessageType& status, bool oneArg) const
|
||||
{
|
||||
// Use the policy if it is set.
|
||||
if (this->Policy12Status == cmPolicies::NEW) {
|
||||
@@ -288,7 +290,7 @@ bool cmConditionEvaluator::GetBooleanValueWithAutoDereference(
|
||||
errorString = "An argument named \"" + newArg.GetValue() +
|
||||
"\" appears in a conditional statement. " +
|
||||
cmPolicies::GetPolicyWarning(cmPolicies::CMP0012);
|
||||
status = cmake::AUTHOR_WARNING;
|
||||
status = MessageType::AUTHOR_WARNING;
|
||||
CM_FALLTHROUGH;
|
||||
case cmPolicies::OLD:
|
||||
return oldResult;
|
||||
@@ -297,7 +299,7 @@ bool cmConditionEvaluator::GetBooleanValueWithAutoDereference(
|
||||
errorString = "An argument named \"" + newArg.GetValue() +
|
||||
"\" appears in a conditional statement. " +
|
||||
cmPolicies::GetRequiredPolicyError(cmPolicies::CMP0012);
|
||||
status = cmake::FATAL_ERROR;
|
||||
status = MessageType::FATAL_ERROR;
|
||||
}
|
||||
case cmPolicies::NEW:
|
||||
break;
|
||||
@@ -362,7 +364,7 @@ void cmConditionEvaluator::HandleBinaryOp(bool value, int& reducible,
|
||||
// level 0 processes parenthetical expressions
|
||||
bool cmConditionEvaluator::HandleLevel0(cmArgumentList& newArgs,
|
||||
std::string& errorString,
|
||||
cmake::MessageType& status)
|
||||
MessageType& status)
|
||||
{
|
||||
int reducible;
|
||||
do {
|
||||
@@ -386,7 +388,7 @@ bool cmConditionEvaluator::HandleLevel0(cmArgumentList& newArgs,
|
||||
}
|
||||
if (depth) {
|
||||
errorString = "mismatched parenthesis in condition";
|
||||
status = cmake::FATAL_ERROR;
|
||||
status = MessageType::FATAL_ERROR;
|
||||
return false;
|
||||
}
|
||||
// store the reduced args in this vector
|
||||
@@ -419,7 +421,7 @@ bool cmConditionEvaluator::HandleLevel0(cmArgumentList& newArgs,
|
||||
//=========================================================================
|
||||
// level one handles most predicates except for NOT
|
||||
bool cmConditionEvaluator::HandleLevel1(cmArgumentList& newArgs, std::string&,
|
||||
cmake::MessageType&)
|
||||
MessageType&)
|
||||
{
|
||||
int reducible;
|
||||
do {
|
||||
@@ -485,7 +487,7 @@ bool cmConditionEvaluator::HandleLevel1(cmArgumentList& newArgs, std::string&,
|
||||
"when the policy is set to NEW. "
|
||||
"Since the policy is not set the OLD behavior will be used.";
|
||||
|
||||
this->Makefile.IssueMessage(cmake::AUTHOR_WARNING, e.str());
|
||||
this->Makefile.IssueMessage(MessageType::AUTHOR_WARNING, e.str());
|
||||
}
|
||||
// is a variable defined
|
||||
if (this->IsKeyword(keyDEFINED, *arg) && argP1 != newArgs.end()) {
|
||||
@@ -516,7 +518,7 @@ bool cmConditionEvaluator::HandleLevel1(cmArgumentList& newArgs, std::string&,
|
||||
// level two handles most binary operations except for AND OR
|
||||
bool cmConditionEvaluator::HandleLevel2(cmArgumentList& newArgs,
|
||||
std::string& errorString,
|
||||
cmake::MessageType& status)
|
||||
MessageType& status)
|
||||
{
|
||||
int reducible;
|
||||
std::string def_buf;
|
||||
@@ -547,7 +549,7 @@ bool cmConditionEvaluator::HandleLevel2(cmArgumentList& newArgs,
|
||||
std::ostringstream error;
|
||||
error << "Regular expression \"" << rex << "\" cannot compile";
|
||||
errorString = error.str();
|
||||
status = cmake::FATAL_ERROR;
|
||||
status = MessageType::FATAL_ERROR;
|
||||
return false;
|
||||
}
|
||||
if (regEntry.find(def)) {
|
||||
@@ -682,7 +684,7 @@ bool cmConditionEvaluator::HandleLevel2(cmArgumentList& newArgs,
|
||||
"when the policy is set to NEW. "
|
||||
"Since the policy is not set the OLD behavior will be used.";
|
||||
|
||||
this->Makefile.IssueMessage(cmake::AUTHOR_WARNING, e.str());
|
||||
this->Makefile.IssueMessage(MessageType::AUTHOR_WARNING, e.str());
|
||||
}
|
||||
}
|
||||
|
||||
@@ -696,7 +698,7 @@ bool cmConditionEvaluator::HandleLevel2(cmArgumentList& newArgs,
|
||||
// level 3 handles NOT
|
||||
bool cmConditionEvaluator::HandleLevel3(cmArgumentList& newArgs,
|
||||
std::string& errorString,
|
||||
cmake::MessageType& status)
|
||||
MessageType& status)
|
||||
{
|
||||
int reducible;
|
||||
do {
|
||||
@@ -722,7 +724,7 @@ bool cmConditionEvaluator::HandleLevel3(cmArgumentList& newArgs,
|
||||
// level 4 handles AND OR
|
||||
bool cmConditionEvaluator::HandleLevel4(cmArgumentList& newArgs,
|
||||
std::string& errorString,
|
||||
cmake::MessageType& status)
|
||||
MessageType& status)
|
||||
{
|
||||
int reducible;
|
||||
bool lhs;
|
||||
|
||||
@@ -11,8 +11,8 @@
|
||||
|
||||
#include "cmExpandedCommandArgument.h"
|
||||
#include "cmListFileCache.h"
|
||||
#include "cmMessageType.h"
|
||||
#include "cmPolicies.h"
|
||||
#include "cmake.h"
|
||||
|
||||
class cmMakefile;
|
||||
|
||||
@@ -28,7 +28,7 @@ public:
|
||||
// arguments were valid, and if so, was the response true. If there is
|
||||
// an error, the errorString will be set.
|
||||
bool IsTrue(const std::vector<cmExpandedCommandArgument>& args,
|
||||
std::string& errorString, cmake::MessageType& status);
|
||||
std::string& errorString, MessageType& status);
|
||||
|
||||
private:
|
||||
// Filter the given variable definition based on policy CMP0054.
|
||||
@@ -48,7 +48,7 @@ private:
|
||||
|
||||
bool GetBooleanValueWithAutoDereference(cmExpandedCommandArgument& newArg,
|
||||
std::string& errorString,
|
||||
cmake::MessageType& status,
|
||||
MessageType& status,
|
||||
bool oneArg = false) const;
|
||||
|
||||
void IncrementArguments(cmArgumentList& newArgs,
|
||||
@@ -66,19 +66,18 @@ private:
|
||||
cmArgumentList::iterator& argP2);
|
||||
|
||||
bool HandleLevel0(cmArgumentList& newArgs, std::string& errorString,
|
||||
cmake::MessageType& status);
|
||||
MessageType& status);
|
||||
|
||||
bool HandleLevel1(cmArgumentList& newArgs, std::string&,
|
||||
cmake::MessageType&);
|
||||
bool HandleLevel1(cmArgumentList& newArgs, std::string&, MessageType&);
|
||||
|
||||
bool HandleLevel2(cmArgumentList& newArgs, std::string& errorString,
|
||||
cmake::MessageType& status);
|
||||
MessageType& status);
|
||||
|
||||
bool HandleLevel3(cmArgumentList& newArgs, std::string& errorString,
|
||||
cmake::MessageType& status);
|
||||
MessageType& status);
|
||||
|
||||
bool HandleLevel4(cmArgumentList& newArgs, std::string& errorString,
|
||||
cmake::MessageType& status);
|
||||
MessageType& status);
|
||||
|
||||
cmMakefile& Makefile;
|
||||
cmListFileContext ExecutionContext;
|
||||
|
||||
@@ -5,8 +5,8 @@
|
||||
#include <sstream>
|
||||
|
||||
#include "cmMakefile.h"
|
||||
#include "cmMessageType.h"
|
||||
#include "cmSystemTools.h"
|
||||
#include "cmake.h"
|
||||
|
||||
class cmExecutionStatus;
|
||||
|
||||
@@ -89,7 +89,7 @@ bool cmConfigureFileCommand::InitialPass(std::vector<std::string> const& args,
|
||||
if (!unknown_args.empty()) {
|
||||
std::string msg = "configure_file called with unknown argument(s):\n";
|
||||
msg += unknown_args;
|
||||
this->Makefile->IssueMessage(cmake::AUTHOR_WARNING, msg);
|
||||
this->Makefile->IssueMessage(MessageType::AUTHOR_WARNING, msg);
|
||||
}
|
||||
|
||||
if (!this->ConfigureFile()) {
|
||||
|
||||
@@ -4,15 +4,15 @@
|
||||
|
||||
#include "cmExecutionStatus.h"
|
||||
#include "cmMakefile.h"
|
||||
#include "cmMessageType.h"
|
||||
#include "cmSystemTools.h"
|
||||
#include "cmake.h"
|
||||
|
||||
// cmContinueCommand
|
||||
bool cmContinueCommand::InitialPass(std::vector<std::string> const& args,
|
||||
cmExecutionStatus& status)
|
||||
{
|
||||
if (!this->Makefile->IsLoopBlock()) {
|
||||
this->Makefile->IssueMessage(cmake::FATAL_ERROR,
|
||||
this->Makefile->IssueMessage(MessageType::FATAL_ERROR,
|
||||
"A CONTINUE command was found outside of a "
|
||||
"proper FOREACH or WHILE loop scope.");
|
||||
cmSystemTools::SetFatalErrorOccured();
|
||||
@@ -22,7 +22,7 @@ bool cmContinueCommand::InitialPass(std::vector<std::string> const& args,
|
||||
status.SetContinueInvoked();
|
||||
|
||||
if (!args.empty()) {
|
||||
this->Makefile->IssueMessage(cmake::FATAL_ERROR,
|
||||
this->Makefile->IssueMessage(MessageType::FATAL_ERROR,
|
||||
"The CONTINUE command does not accept any "
|
||||
"arguments.");
|
||||
cmSystemTools::SetFatalErrorOccured();
|
||||
|
||||
+33
-30
@@ -13,6 +13,7 @@
|
||||
#include "cmExportTryCompileFileGenerator.h"
|
||||
#include "cmGlobalGenerator.h"
|
||||
#include "cmMakefile.h"
|
||||
#include "cmMessageType.h"
|
||||
#include "cmOutputConverter.h"
|
||||
#include "cmPolicies.h"
|
||||
#include "cmState.h"
|
||||
@@ -96,7 +97,7 @@ int cmCoreTryCompile::TryCompileCode(std::vector<std::string> const& argv,
|
||||
targetType = cmStateEnums::STATIC_LIBRARY;
|
||||
} else {
|
||||
this->Makefile->IssueMessage(
|
||||
cmake::FATAL_ERROR,
|
||||
MessageType::FATAL_ERROR,
|
||||
std::string("Invalid value '") + tt +
|
||||
"' for "
|
||||
"CMAKE_TRY_COMPILE_TARGET_TYPE. Only "
|
||||
@@ -238,7 +239,7 @@ int cmCoreTryCompile::TryCompileCode(std::vector<std::string> const& argv,
|
||||
CM_FALLTHROUGH;
|
||||
default:
|
||||
this->Makefile->IssueMessage(
|
||||
cmake::FATAL_ERROR,
|
||||
MessageType::FATAL_ERROR,
|
||||
"Only libraries may be used as try_compile or try_run IMPORTED "
|
||||
"LINK_LIBRARIES. Got " +
|
||||
std::string(tgt->GetName()) +
|
||||
@@ -297,93 +298,95 @@ int cmCoreTryCompile::TryCompileCode(std::vector<std::string> const& argv,
|
||||
} else {
|
||||
std::ostringstream m;
|
||||
m << "try_compile given unknown argument \"" << argv[i] << "\".";
|
||||
this->Makefile->IssueMessage(cmake::AUTHOR_WARNING, m.str());
|
||||
this->Makefile->IssueMessage(MessageType::AUTHOR_WARNING, m.str());
|
||||
}
|
||||
}
|
||||
|
||||
if (didCopyFile && copyFile.empty()) {
|
||||
this->Makefile->IssueMessage(cmake::FATAL_ERROR,
|
||||
this->Makefile->IssueMessage(MessageType::FATAL_ERROR,
|
||||
"COPY_FILE must be followed by a file path");
|
||||
return -1;
|
||||
}
|
||||
|
||||
if (didCopyFileError && copyFileError.empty()) {
|
||||
this->Makefile->IssueMessage(
|
||||
cmake::FATAL_ERROR,
|
||||
MessageType::FATAL_ERROR,
|
||||
"COPY_FILE_ERROR must be followed by a variable name");
|
||||
return -1;
|
||||
}
|
||||
|
||||
if (didCopyFileError && !didCopyFile) {
|
||||
this->Makefile->IssueMessage(
|
||||
cmake::FATAL_ERROR, "COPY_FILE_ERROR may be used only with COPY_FILE");
|
||||
MessageType::FATAL_ERROR,
|
||||
"COPY_FILE_ERROR may be used only with COPY_FILE");
|
||||
return -1;
|
||||
}
|
||||
|
||||
if (didOutputVariable && outputVariable.empty()) {
|
||||
this->Makefile->IssueMessage(
|
||||
cmake::FATAL_ERROR,
|
||||
MessageType::FATAL_ERROR,
|
||||
"OUTPUT_VARIABLE must be followed by a variable name");
|
||||
return -1;
|
||||
}
|
||||
|
||||
if (useSources && sources.empty()) {
|
||||
this->Makefile->IssueMessage(
|
||||
cmake::FATAL_ERROR,
|
||||
MessageType::FATAL_ERROR,
|
||||
"SOURCES must be followed by at least one source file");
|
||||
return -1;
|
||||
}
|
||||
|
||||
if (didCStandard && !this->SrcFileSignature) {
|
||||
this->Makefile->IssueMessage(
|
||||
cmake::FATAL_ERROR, "C_STANDARD allowed only in source file signature.");
|
||||
MessageType::FATAL_ERROR,
|
||||
"C_STANDARD allowed only in source file signature.");
|
||||
return -1;
|
||||
}
|
||||
if (didCxxStandard && !this->SrcFileSignature) {
|
||||
this->Makefile->IssueMessage(
|
||||
cmake::FATAL_ERROR,
|
||||
MessageType::FATAL_ERROR,
|
||||
"CXX_STANDARD allowed only in source file signature.");
|
||||
return -1;
|
||||
}
|
||||
if (didCudaStandard && !this->SrcFileSignature) {
|
||||
this->Makefile->IssueMessage(
|
||||
cmake::FATAL_ERROR,
|
||||
MessageType::FATAL_ERROR,
|
||||
"CUDA_STANDARD allowed only in source file signature.");
|
||||
return -1;
|
||||
}
|
||||
if (didCStandardRequired && !this->SrcFileSignature) {
|
||||
this->Makefile->IssueMessage(
|
||||
cmake::FATAL_ERROR,
|
||||
MessageType::FATAL_ERROR,
|
||||
"C_STANDARD_REQUIRED allowed only in source file signature.");
|
||||
return -1;
|
||||
}
|
||||
if (didCxxStandardRequired && !this->SrcFileSignature) {
|
||||
this->Makefile->IssueMessage(
|
||||
cmake::FATAL_ERROR,
|
||||
MessageType::FATAL_ERROR,
|
||||
"CXX_STANDARD_REQUIRED allowed only in source file signature.");
|
||||
return -1;
|
||||
}
|
||||
if (didCudaStandardRequired && !this->SrcFileSignature) {
|
||||
this->Makefile->IssueMessage(
|
||||
cmake::FATAL_ERROR,
|
||||
MessageType::FATAL_ERROR,
|
||||
"CUDA_STANDARD_REQUIRED allowed only in source file signature.");
|
||||
return -1;
|
||||
}
|
||||
if (didCExtensions && !this->SrcFileSignature) {
|
||||
this->Makefile->IssueMessage(
|
||||
cmake::FATAL_ERROR,
|
||||
MessageType::FATAL_ERROR,
|
||||
"C_EXTENSIONS allowed only in source file signature.");
|
||||
return -1;
|
||||
}
|
||||
if (didCxxExtensions && !this->SrcFileSignature) {
|
||||
this->Makefile->IssueMessage(
|
||||
cmake::FATAL_ERROR,
|
||||
MessageType::FATAL_ERROR,
|
||||
"CXX_EXTENSIONS allowed only in source file signature.");
|
||||
return -1;
|
||||
}
|
||||
if (didCudaExtensions && !this->SrcFileSignature) {
|
||||
this->Makefile->IssueMessage(
|
||||
cmake::FATAL_ERROR,
|
||||
MessageType::FATAL_ERROR,
|
||||
"CUDA_EXTENSIONS allowed only in source file signature.");
|
||||
return -1;
|
||||
}
|
||||
@@ -397,13 +400,13 @@ int cmCoreTryCompile::TryCompileCode(std::vector<std::string> const& argv,
|
||||
// only valid for srcfile signatures
|
||||
if (!compileDefs.empty()) {
|
||||
this->Makefile->IssueMessage(
|
||||
cmake::FATAL_ERROR,
|
||||
MessageType::FATAL_ERROR,
|
||||
"COMPILE_DEFINITIONS specified on a srcdir type TRY_COMPILE");
|
||||
return -1;
|
||||
}
|
||||
if (!copyFile.empty()) {
|
||||
this->Makefile->IssueMessage(
|
||||
cmake::FATAL_ERROR,
|
||||
MessageType::FATAL_ERROR,
|
||||
"COPY_FILE specified on a srcdir type TRY_COMPILE");
|
||||
return -1;
|
||||
}
|
||||
@@ -416,7 +419,7 @@ int cmCoreTryCompile::TryCompileCode(std::vector<std::string> const& argv,
|
||||
std::ostringstream e;
|
||||
e << "Attempt at a recursive or nested TRY_COMPILE in directory\n"
|
||||
<< " " << this->BinaryDirectory << "\n";
|
||||
this->Makefile->IssueMessage(cmake::FATAL_ERROR, e.str());
|
||||
this->Makefile->IssueMessage(MessageType::FATAL_ERROR, e.str());
|
||||
return -1;
|
||||
}
|
||||
|
||||
@@ -450,7 +453,7 @@ int cmCoreTryCompile::TryCompileCode(std::vector<std::string> const& argv,
|
||||
gg->GetEnabledLanguages(langs);
|
||||
err << cmJoin(langs, " ");
|
||||
err << "\nSee project() command to enable other languages.";
|
||||
this->Makefile->IssueMessage(cmake::FATAL_ERROR, err.str());
|
||||
this->Makefile->IssueMessage(MessageType::FATAL_ERROR, err.str());
|
||||
return -1;
|
||||
}
|
||||
}
|
||||
@@ -471,7 +474,7 @@ int cmCoreTryCompile::TryCompileCode(std::vector<std::string> const& argv,
|
||||
<< " " << outFileName << "\n"
|
||||
<< cmSystemTools::GetLastSystemError();
|
||||
/* clang-format on */
|
||||
this->Makefile->IssueMessage(cmake::FATAL_ERROR, e.str());
|
||||
this->Makefile->IssueMessage(MessageType::FATAL_ERROR, e.str());
|
||||
return -1;
|
||||
}
|
||||
|
||||
@@ -522,7 +525,7 @@ int cmCoreTryCompile::TryCompileCode(std::vector<std::string> const& argv,
|
||||
"(e.g. CMAKE_C_FLAGS_DEBUG) in the test project."
|
||||
;
|
||||
/* clang-format on */
|
||||
this->Makefile->IssueMessage(cmake::AUTHOR_WARNING, w.str());
|
||||
this->Makefile->IssueMessage(MessageType::AUTHOR_WARNING, w.str());
|
||||
}
|
||||
case cmPolicies::OLD:
|
||||
// OLD behavior is to do nothing.
|
||||
@@ -530,7 +533,7 @@ int cmCoreTryCompile::TryCompileCode(std::vector<std::string> const& argv,
|
||||
case cmPolicies::REQUIRED_IF_USED:
|
||||
case cmPolicies::REQUIRED_ALWAYS:
|
||||
this->Makefile->IssueMessage(
|
||||
cmake::FATAL_ERROR,
|
||||
MessageType::FATAL_ERROR,
|
||||
cmPolicies::GetRequiredPolicyError(cmPolicies::CMP0066));
|
||||
CM_FALLTHROUGH;
|
||||
case cmPolicies::NEW: {
|
||||
@@ -559,7 +562,7 @@ int cmCoreTryCompile::TryCompileCode(std::vector<std::string> const& argv,
|
||||
"in the test project."
|
||||
;
|
||||
/* clang-format on */
|
||||
this->Makefile->IssueMessage(cmake::AUTHOR_WARNING, w.str());
|
||||
this->Makefile->IssueMessage(MessageType::AUTHOR_WARNING, w.str());
|
||||
}
|
||||
case cmPolicies::OLD:
|
||||
// OLD behavior is to do nothing.
|
||||
@@ -567,7 +570,7 @@ int cmCoreTryCompile::TryCompileCode(std::vector<std::string> const& argv,
|
||||
case cmPolicies::REQUIRED_IF_USED:
|
||||
case cmPolicies::REQUIRED_ALWAYS:
|
||||
this->Makefile->IssueMessage(
|
||||
cmake::FATAL_ERROR,
|
||||
MessageType::FATAL_ERROR,
|
||||
cmPolicies::GetRequiredPolicyError(cmPolicies::CMP0056));
|
||||
CM_FALLTHROUGH;
|
||||
case cmPolicies::NEW:
|
||||
@@ -606,7 +609,7 @@ int cmCoreTryCompile::TryCompileCode(std::vector<std::string> const& argv,
|
||||
tcfg.SetConfig(tcConfig);
|
||||
|
||||
if (!tcfg.GenerateImportFile()) {
|
||||
this->Makefile->IssueMessage(cmake::FATAL_ERROR,
|
||||
this->Makefile->IssueMessage(MessageType::FATAL_ERROR,
|
||||
"could not write export file.");
|
||||
fclose(fout);
|
||||
return -1;
|
||||
@@ -734,7 +737,7 @@ int cmCoreTryCompile::TryCompileCode(std::vector<std::string> const& argv,
|
||||
case cmPolicies::REQUIRED_IF_USED:
|
||||
case cmPolicies::REQUIRED_ALWAYS:
|
||||
this->Makefile->IssueMessage(
|
||||
cmake::FATAL_ERROR,
|
||||
MessageType::FATAL_ERROR,
|
||||
cmPolicies::GetRequiredPolicyError(cmPolicies::CMP0067));
|
||||
case cmPolicies::NEW:
|
||||
// NEW behavior is to honor the language standard variables.
|
||||
@@ -796,7 +799,7 @@ int cmCoreTryCompile::TryCompileCode(std::vector<std::string> const& argv,
|
||||
for (std::string const& vi : this->WarnCMP0067) {
|
||||
w << " " << vi << "\n";
|
||||
}
|
||||
this->Makefile->IssueMessage(cmake::AUTHOR_WARNING, w.str());
|
||||
this->Makefile->IssueMessage(MessageType::AUTHOR_WARNING, w.str());
|
||||
}
|
||||
|
||||
if (testC) {
|
||||
@@ -905,7 +908,7 @@ int cmCoreTryCompile::TryCompileCode(std::vector<std::string> const& argv,
|
||||
emsg << this->FindErrorMessage.c_str();
|
||||
}
|
||||
if (copyFileError.empty()) {
|
||||
this->Makefile->IssueMessage(cmake::FATAL_ERROR, emsg.str());
|
||||
this->Makefile->IssueMessage(MessageType::FATAL_ERROR, emsg.str());
|
||||
return -1;
|
||||
}
|
||||
copyFileErrorMessage = emsg.str();
|
||||
|
||||
@@ -3,7 +3,7 @@
|
||||
#include "cmDisallowedCommand.h"
|
||||
|
||||
#include "cmMakefile.h"
|
||||
#include "cmake.h"
|
||||
#include "cmMessageType.h"
|
||||
|
||||
class cmExecutionStatus;
|
||||
|
||||
@@ -12,7 +12,7 @@ bool cmDisallowedCommand::InitialPass(std::vector<std::string> const& args,
|
||||
{
|
||||
switch (this->Makefile->GetPolicyStatus(this->Policy)) {
|
||||
case cmPolicies::WARN:
|
||||
this->Makefile->IssueMessage(cmake::AUTHOR_WARNING,
|
||||
this->Makefile->IssueMessage(MessageType::AUTHOR_WARNING,
|
||||
cmPolicies::GetPolicyWarning(this->Policy));
|
||||
break;
|
||||
case cmPolicies::OLD:
|
||||
@@ -20,7 +20,7 @@ bool cmDisallowedCommand::InitialPass(std::vector<std::string> const& args,
|
||||
case cmPolicies::REQUIRED_IF_USED:
|
||||
case cmPolicies::REQUIRED_ALWAYS:
|
||||
case cmPolicies::NEW:
|
||||
this->Makefile->IssueMessage(cmake::FATAL_ERROR, this->Message);
|
||||
this->Makefile->IssueMessage(MessageType::FATAL_ERROR, this->Message);
|
||||
return true;
|
||||
}
|
||||
|
||||
|
||||
@@ -11,11 +11,11 @@
|
||||
#include "cmGeneratorTarget.h"
|
||||
#include "cmLinkItem.h"
|
||||
#include "cmMakefile.h"
|
||||
#include "cmMessageType.h"
|
||||
#include "cmPolicies.h"
|
||||
#include "cmStateTypes.h"
|
||||
#include "cmSystemTools.h"
|
||||
#include "cmTarget.h"
|
||||
#include "cmake.h"
|
||||
|
||||
cmExportBuildAndroidMKGenerator::cmExportBuildAndroidMKGenerator()
|
||||
{
|
||||
@@ -92,7 +92,7 @@ void cmExportBuildAndroidMKGenerator::GenerateInterfaceProperties(
|
||||
}
|
||||
w << " set to OLD for target " << target->Target->GetName() << ". "
|
||||
<< "The export will only work with CMP0022 set to NEW.";
|
||||
target->Makefile->IssueMessage(cmake::AUTHOR_WARNING, w.str());
|
||||
target->Makefile->IssueMessage(MessageType::AUTHOR_WARNING, w.str());
|
||||
}
|
||||
if (!properties.empty()) {
|
||||
os << "LOCAL_CPP_FEATURES := rtti exceptions\n";
|
||||
|
||||
@@ -9,6 +9,7 @@
|
||||
#include "cmGlobalGenerator.h"
|
||||
#include "cmLocalGenerator.h"
|
||||
#include "cmMakefile.h"
|
||||
#include "cmMessageType.h"
|
||||
#include "cmPolicies.h"
|
||||
#include "cmStateTypes.h"
|
||||
#include "cmSystemTools.h"
|
||||
@@ -55,7 +56,7 @@ bool cmExportBuildFileGenerator::GenerateMainFile(std::ostream& os)
|
||||
std::ostringstream e;
|
||||
e << "given target \"" << te->GetName() << "\" more than once.";
|
||||
this->LG->GetGlobalGenerator()->GetCMakeInstance()->IssueMessage(
|
||||
cmake::FATAL_ERROR, e.str(),
|
||||
MessageType::FATAL_ERROR, e.str(),
|
||||
this->LG->GetMakefile()->GetBacktrace());
|
||||
return false;
|
||||
}
|
||||
@@ -110,7 +111,7 @@ bool cmExportBuildFileGenerator::GenerateMainFile(std::ostream& os)
|
||||
std::string errorMessage;
|
||||
if (!this->PopulateExportProperties(gte, properties, errorMessage)) {
|
||||
this->LG->GetGlobalGenerator()->GetCMakeInstance()->IssueMessage(
|
||||
cmake::FATAL_ERROR, errorMessage,
|
||||
MessageType::FATAL_ERROR, errorMessage,
|
||||
this->LG->GetMakefile()->GetBacktrace());
|
||||
return false;
|
||||
}
|
||||
@@ -328,7 +329,8 @@ void cmExportBuildFileGenerator::ComplainAboutMissingTarget(
|
||||
<< "consider using the APPEND option with multiple separate calls.";
|
||||
|
||||
this->LG->GetGlobalGenerator()->GetCMakeInstance()->IssueMessage(
|
||||
cmake::FATAL_ERROR, e.str(), this->LG->GetMakefile()->GetBacktrace());
|
||||
MessageType::FATAL_ERROR, e.str(),
|
||||
this->LG->GetMakefile()->GetBacktrace());
|
||||
}
|
||||
|
||||
std::string cmExportBuildFileGenerator::InstallNameDir(
|
||||
|
||||
@@ -12,10 +12,10 @@
|
||||
#include "cmGeneratedFileStream.h"
|
||||
#include "cmGlobalGenerator.h"
|
||||
#include "cmMakefile.h"
|
||||
#include "cmMessageType.h"
|
||||
#include "cmStateTypes.h"
|
||||
#include "cmSystemTools.h"
|
||||
#include "cmTarget.h"
|
||||
#include "cmake.h"
|
||||
|
||||
class cmExecutionStatus;
|
||||
|
||||
@@ -279,7 +279,7 @@ void cmExportCommand::ReportRegistryError(std::string const& msg,
|
||||
e << "Windows reported:\n"
|
||||
<< " " << cmsys::Encoding::ToNarrow(winmsg);
|
||||
}
|
||||
this->Makefile->IssueMessage(cmake::WARNING, e.str());
|
||||
this->Makefile->IssueMessage(MessageType::WARNING, e.str());
|
||||
}
|
||||
|
||||
void cmExportCommand::StorePackageRegistryWin(std::string const& package,
|
||||
@@ -347,7 +347,7 @@ void cmExportCommand::StorePackageRegistryDir(std::string const& package,
|
||||
<< " " << fname << "\n"
|
||||
<< cmSystemTools::GetLastSystemError() << "\n";
|
||||
/* clang-format on */
|
||||
this->Makefile->IssueMessage(cmake::WARNING, e.str());
|
||||
this->Makefile->IssueMessage(MessageType::WARNING, e.str());
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
@@ -9,6 +9,7 @@
|
||||
#include "cmLinkItem.h"
|
||||
#include "cmLocalGenerator.h"
|
||||
#include "cmMakefile.h"
|
||||
#include "cmMessageType.h"
|
||||
#include "cmOutputConverter.h"
|
||||
#include "cmPolicies.h"
|
||||
#include "cmProperty.h"
|
||||
@@ -17,7 +18,6 @@
|
||||
#include "cmSystemTools.h"
|
||||
#include "cmTarget.h"
|
||||
#include "cmTargetExport.h"
|
||||
#include "cmake.h"
|
||||
|
||||
#include "cmsys/FStream.hxx"
|
||||
#include <assert.h>
|
||||
@@ -214,13 +214,13 @@ static bool checkInterfaceDirs(const std::string& prepro,
|
||||
if (genexPos == 0) {
|
||||
continue;
|
||||
}
|
||||
cmake::MessageType messageType = cmake::FATAL_ERROR;
|
||||
MessageType messageType = MessageType::FATAL_ERROR;
|
||||
std::ostringstream e;
|
||||
if (genexPos != std::string::npos) {
|
||||
if (prop == "INTERFACE_INCLUDE_DIRECTORIES") {
|
||||
switch (target->GetPolicyStatusCMP0041()) {
|
||||
case cmPolicies::WARN:
|
||||
messageType = cmake::WARNING;
|
||||
messageType = MessageType::WARNING;
|
||||
e << cmPolicies::GetPolicyWarning(cmPolicies::CMP0041) << "\n";
|
||||
break;
|
||||
case cmPolicies::OLD:
|
||||
@@ -275,8 +275,8 @@ static bool checkInterfaceDirs(const std::string& prepro,
|
||||
<< (inBinary ? "build" : "source") << " tree:\n \""
|
||||
<< (inBinary ? topBinaryDir : topSourceDir) << "\""
|
||||
<< std::endl;
|
||||
target->GetLocalGenerator()->IssueMessage(cmake::AUTHOR_WARNING,
|
||||
s.str());
|
||||
target->GetLocalGenerator()->IssueMessage(
|
||||
MessageType::AUTHOR_WARNING, s.str());
|
||||
CM_FALLTHROUGH;
|
||||
}
|
||||
case cmPolicies::OLD:
|
||||
@@ -390,7 +390,7 @@ void cmExportFileGenerator::PopulateIncludeDirectoriesInterface(
|
||||
"depend on the configuration, policy values or the link interface "
|
||||
"are "
|
||||
"not supported. Consider using target_include_directories instead.";
|
||||
lg->IssueMessage(cmake::FATAL_ERROR, e.str());
|
||||
lg->IssueMessage(MessageType::FATAL_ERROR, e.str());
|
||||
return;
|
||||
}
|
||||
|
||||
@@ -520,7 +520,7 @@ void getCompatibleInterfaceProperties(cmGeneratorTarget* target,
|
||||
e << "Exporting the target \"" << target->GetName()
|
||||
<< "\" is not "
|
||||
"allowed since its linker language cannot be determined";
|
||||
lg->IssueMessage(cmake::FATAL_ERROR, e.str());
|
||||
lg->IssueMessage(MessageType::FATAL_ERROR, e.str());
|
||||
return;
|
||||
}
|
||||
|
||||
@@ -727,7 +727,8 @@ void cmExportFileGenerator::ResolveTargetsInGeneratorExpression(
|
||||
this->ReplaceInstallPrefix(input);
|
||||
|
||||
if (!errorString.empty()) {
|
||||
target->GetLocalGenerator()->IssueMessage(cmake::FATAL_ERROR, errorString);
|
||||
target->GetLocalGenerator()->IssueMessage(MessageType::FATAL_ERROR,
|
||||
errorString);
|
||||
}
|
||||
}
|
||||
|
||||
@@ -780,7 +781,7 @@ void cmExportFileGenerator::SetImportLinkInterface(
|
||||
"but also has old-style LINK_INTERFACE_LIBRARIES properties "
|
||||
"populated, but it was exported without the "
|
||||
"EXPORT_LINK_INTERFACE_LIBRARIES to export the old-style properties";
|
||||
lg->IssueMessage(cmake::FATAL_ERROR, e.str());
|
||||
lg->IssueMessage(MessageType::FATAL_ERROR, e.str());
|
||||
return;
|
||||
}
|
||||
|
||||
|
||||
@@ -16,6 +16,7 @@
|
||||
#include "cmGlobalGenerator.h"
|
||||
#include "cmLocalGenerator.h"
|
||||
#include "cmMakefile.h"
|
||||
#include "cmMessageType.h"
|
||||
#include "cmSourceFile.h"
|
||||
#include "cmSourceGroup.h"
|
||||
#include "cmState.h"
|
||||
@@ -134,7 +135,7 @@ void cmExtraEclipseCDT4Generator::Generate()
|
||||
if (!this->GenerateSourceProject &&
|
||||
(mf->IsOn("ECLIPSE_CDT4_GENERATE_SOURCE_PROJECT"))) {
|
||||
mf->IssueMessage(
|
||||
cmake::WARNING,
|
||||
MessageType::WARNING,
|
||||
"ECLIPSE_CDT4_GENERATE_SOURCE_PROJECT is set to TRUE, "
|
||||
"but this variable is not supported anymore since CMake 2.8.7.\n"
|
||||
"Enable CMAKE_ECLIPSE_GENERATE_SOURCE_PROJECT instead.");
|
||||
@@ -142,7 +143,7 @@ void cmExtraEclipseCDT4Generator::Generate()
|
||||
|
||||
if (cmSystemTools::IsSubDirectory(this->HomeOutputDirectory,
|
||||
this->HomeDirectory)) {
|
||||
mf->IssueMessage(cmake::WARNING,
|
||||
mf->IssueMessage(MessageType::WARNING,
|
||||
"The build directory is a subdirectory "
|
||||
"of the source directory.\n"
|
||||
"This is not supported well by Eclipse. It is strongly "
|
||||
|
||||
@@ -14,6 +14,7 @@
|
||||
#include "cmGlobalGenerator.h"
|
||||
#include "cmLocalGenerator.h"
|
||||
#include "cmMakefile.h"
|
||||
#include "cmMessageType.h"
|
||||
#include "cmSourceFile.h"
|
||||
#include "cmStateTypes.h"
|
||||
#include "cmSystemTools.h"
|
||||
@@ -154,7 +155,7 @@ void cmExtraSublimeTextGenerator::CreateNewProjectFile(
|
||||
e << "Could not parse Env Vars specified in "
|
||||
"\"CMAKE_SUBLIME_TEXT_2_ENV_SETTINGS\""
|
||||
<< ", corrupted string " << t;
|
||||
mf->IssueMessage(cmake::FATAL_ERROR, e.str());
|
||||
mf->IssueMessage(MessageType::FATAL_ERROR, e.str());
|
||||
}
|
||||
}
|
||||
fout << "\n\t\t}";
|
||||
|
||||
+20
-17
@@ -32,6 +32,7 @@
|
||||
#include "cmInstallType.h"
|
||||
#include "cmListFileCache.h"
|
||||
#include "cmMakefile.h"
|
||||
#include "cmMessageType.h"
|
||||
#include "cmPolicies.h"
|
||||
#include "cmSystemTools.h"
|
||||
#include "cmTimestamp.h"
|
||||
@@ -834,13 +835,13 @@ bool cmFileCommand::HandleGlobCommand(std::vector<std::string> const& args,
|
||||
// Generated build system depends on glob results
|
||||
if (!configureDepends && warnConfigureLate) {
|
||||
this->Makefile->IssueMessage(
|
||||
cmake::AUTHOR_WARNING,
|
||||
MessageType::AUTHOR_WARNING,
|
||||
"CONFIGURE_DEPENDS flag was given after a glob expression was "
|
||||
"already evaluated.");
|
||||
}
|
||||
if (workingMode != cmake::NORMAL_MODE) {
|
||||
this->Makefile->IssueMessage(
|
||||
cmake::FATAL_ERROR,
|
||||
MessageType::FATAL_ERROR,
|
||||
"CONFIGURE_DEPENDS is invalid for script and find package modes.");
|
||||
return false;
|
||||
}
|
||||
@@ -871,12 +872,12 @@ bool cmFileCommand::HandleGlobCommand(std::vector<std::string> const& args,
|
||||
for (cmsys::Glob::Message const& globMessage : globMessages) {
|
||||
if (globMessage.type == cmsys::Glob::cyclicRecursion) {
|
||||
this->Makefile->IssueMessage(
|
||||
cmake::AUTHOR_WARNING,
|
||||
MessageType::AUTHOR_WARNING,
|
||||
"Cyclic recursion detected while globbing for '" + *i + "':\n" +
|
||||
globMessage.content);
|
||||
} else {
|
||||
this->Makefile->IssueMessage(
|
||||
cmake::FATAL_ERROR,
|
||||
MessageType::FATAL_ERROR,
|
||||
"Error has occurred while globbing for '" + *i + "' - " +
|
||||
globMessage.content);
|
||||
shouldExit = true;
|
||||
@@ -925,7 +926,7 @@ bool cmFileCommand::HandleGlobCommand(std::vector<std::string> const& args,
|
||||
// symlinks without being explicitly asked to: warn the author.
|
||||
if (warnFollowedSymlinks) {
|
||||
this->Makefile->IssueMessage(
|
||||
cmake::AUTHOR_WARNING,
|
||||
MessageType::AUTHOR_WARNING,
|
||||
cmPolicies::GetPolicyWarning(cmPolicies::CMP0009));
|
||||
}
|
||||
break;
|
||||
@@ -2853,7 +2854,7 @@ bool cmFileCommand::HandleDownloadCommand(std::vector<std::string> const& args)
|
||||
// Do not return error for compatibility reason.
|
||||
std::string err = "Unexpected argument: ";
|
||||
err += *i;
|
||||
this->Makefile->IssueMessage(cmake::AUTHOR_WARNING, err);
|
||||
this->Makefile->IssueMessage(MessageType::AUTHOR_WARNING, err);
|
||||
}
|
||||
++i;
|
||||
}
|
||||
@@ -3169,7 +3170,7 @@ bool cmFileCommand::HandleUploadCommand(std::vector<std::string> const& args)
|
||||
// Do not return error for compatibility reason.
|
||||
std::string err = "Unexpected argument: ";
|
||||
err += *i;
|
||||
this->Makefile->IssueMessage(cmake::AUTHOR_WARNING, err);
|
||||
this->Makefile->IssueMessage(MessageType::AUTHOR_WARNING, err);
|
||||
}
|
||||
|
||||
++i;
|
||||
@@ -3427,7 +3428,8 @@ bool cmFileCommand::HandleLockCommand(std::vector<std::string> const& args)
|
||||
// Parse arguments
|
||||
if (args.size() < 2) {
|
||||
this->Makefile->IssueMessage(
|
||||
cmake::FATAL_ERROR, "sub-command LOCK requires at least two arguments.");
|
||||
MessageType::FATAL_ERROR,
|
||||
"sub-command LOCK requires at least two arguments.");
|
||||
return false;
|
||||
}
|
||||
|
||||
@@ -3441,7 +3443,7 @@ bool cmFileCommand::HandleLockCommand(std::vector<std::string> const& args)
|
||||
++i;
|
||||
const char* merr = "expected FUNCTION, FILE or PROCESS after GUARD";
|
||||
if (i >= args.size()) {
|
||||
this->Makefile->IssueMessage(cmake::FATAL_ERROR, merr);
|
||||
this->Makefile->IssueMessage(MessageType::FATAL_ERROR, merr);
|
||||
return false;
|
||||
}
|
||||
if (args[i] == "FUNCTION") {
|
||||
@@ -3453,7 +3455,7 @@ bool cmFileCommand::HandleLockCommand(std::vector<std::string> const& args)
|
||||
} else {
|
||||
std::ostringstream e;
|
||||
e << merr << ", but got:\n \"" << args[i] << "\".";
|
||||
this->Makefile->IssueMessage(cmake::FATAL_ERROR, e.str());
|
||||
this->Makefile->IssueMessage(MessageType::FATAL_ERROR, e.str());
|
||||
return false;
|
||||
}
|
||||
|
||||
@@ -3461,14 +3463,15 @@ bool cmFileCommand::HandleLockCommand(std::vector<std::string> const& args)
|
||||
++i;
|
||||
if (i >= args.size()) {
|
||||
this->Makefile->IssueMessage(
|
||||
cmake::FATAL_ERROR, "expected variable name after RESULT_VARIABLE");
|
||||
MessageType::FATAL_ERROR,
|
||||
"expected variable name after RESULT_VARIABLE");
|
||||
return false;
|
||||
}
|
||||
resultVariable = args[i];
|
||||
} else if (args[i] == "TIMEOUT") {
|
||||
++i;
|
||||
if (i >= args.size()) {
|
||||
this->Makefile->IssueMessage(cmake::FATAL_ERROR,
|
||||
this->Makefile->IssueMessage(MessageType::FATAL_ERROR,
|
||||
"expected timeout value after TIMEOUT");
|
||||
return false;
|
||||
}
|
||||
@@ -3477,7 +3480,7 @@ bool cmFileCommand::HandleLockCommand(std::vector<std::string> const& args)
|
||||
scanned < 0) {
|
||||
std::ostringstream e;
|
||||
e << "TIMEOUT value \"" << args[i] << "\" is not an unsigned integer.";
|
||||
this->Makefile->IssueMessage(cmake::FATAL_ERROR, e.str());
|
||||
this->Makefile->IssueMessage(MessageType::FATAL_ERROR, e.str());
|
||||
return false;
|
||||
}
|
||||
timeout = static_cast<unsigned long>(scanned);
|
||||
@@ -3485,7 +3488,7 @@ bool cmFileCommand::HandleLockCommand(std::vector<std::string> const& args)
|
||||
std::ostringstream e;
|
||||
e << "expected DIRECTORY, RELEASE, GUARD, RESULT_VARIABLE or TIMEOUT\n";
|
||||
e << "but got: \"" << args[i] << "\".";
|
||||
this->Makefile->IssueMessage(cmake::FATAL_ERROR, e.str());
|
||||
this->Makefile->IssueMessage(MessageType::FATAL_ERROR, e.str());
|
||||
return false;
|
||||
}
|
||||
}
|
||||
@@ -3507,7 +3510,7 @@ bool cmFileCommand::HandleLockCommand(std::vector<std::string> const& args)
|
||||
std::ostringstream e;
|
||||
e << "directory\n \"" << parentDir << "\"\ncreation failed ";
|
||||
e << "(check permissions).";
|
||||
this->Makefile->IssueMessage(cmake::FATAL_ERROR, e.str());
|
||||
this->Makefile->IssueMessage(MessageType::FATAL_ERROR, e.str());
|
||||
cmSystemTools::SetFatalErrorOccured();
|
||||
return false;
|
||||
}
|
||||
@@ -3515,7 +3518,7 @@ bool cmFileCommand::HandleLockCommand(std::vector<std::string> const& args)
|
||||
if (!file) {
|
||||
std::ostringstream e;
|
||||
e << "file\n \"" << path << "\"\ncreation failed (check permissions).";
|
||||
this->Makefile->IssueMessage(cmake::FATAL_ERROR, e.str());
|
||||
this->Makefile->IssueMessage(MessageType::FATAL_ERROR, e.str());
|
||||
cmSystemTools::SetFatalErrorOccured();
|
||||
return false;
|
||||
}
|
||||
@@ -3550,7 +3553,7 @@ bool cmFileCommand::HandleLockCommand(std::vector<std::string> const& args)
|
||||
if (resultVariable.empty() && !fileLockResult.IsOk()) {
|
||||
std::ostringstream e;
|
||||
e << "error locking file\n \"" << path << "\"\n" << result << ".";
|
||||
this->Makefile->IssueMessage(cmake::FATAL_ERROR, e.str());
|
||||
this->Makefile->IssueMessage(MessageType::FATAL_ERROR, e.str());
|
||||
cmSystemTools::SetFatalErrorOccured();
|
||||
return false;
|
||||
}
|
||||
|
||||
@@ -21,12 +21,12 @@
|
||||
|
||||
#include "cmAlgorithms.h"
|
||||
#include "cmMakefile.h"
|
||||
#include "cmMessageType.h"
|
||||
#include "cmPolicies.h"
|
||||
#include "cmSearchPath.h"
|
||||
#include "cmState.h"
|
||||
#include "cmStateTypes.h"
|
||||
#include "cmVersion.h"
|
||||
#include "cmake.h"
|
||||
|
||||
#if defined(__HAIKU__)
|
||||
# include <FindDirectory.h>
|
||||
@@ -384,7 +384,8 @@ bool cmFindPackageCommand::InitialPass(std::vector<std::string> const& args,
|
||||
if (this->Version.empty() && this->VersionExact) {
|
||||
this->VersionExact = false;
|
||||
this->Makefile->IssueMessage(
|
||||
cmake::AUTHOR_WARNING, "Ignoring EXACT since no version is requested.");
|
||||
MessageType::AUTHOR_WARNING,
|
||||
"Ignoring EXACT since no version is requested.");
|
||||
}
|
||||
|
||||
if (this->Version.empty() || components.empty()) {
|
||||
@@ -473,7 +474,7 @@ bool cmFindPackageCommand::InitialPass(std::vector<std::string> const& args,
|
||||
case cmPolicies::REQUIRED_IF_USED:
|
||||
case cmPolicies::REQUIRED_ALWAYS:
|
||||
this->Makefile->IssueMessage(
|
||||
cmake::FATAL_ERROR,
|
||||
MessageType::FATAL_ERROR,
|
||||
cmPolicies::GetRequiredPolicyError(cmPolicies::CMP0074));
|
||||
break;
|
||||
case cmPolicies::NEW: {
|
||||
@@ -536,7 +537,7 @@ bool cmFindPackageCommand::InitialPass(std::vector<std::string> const& args,
|
||||
}
|
||||
aw << "\n"
|
||||
"(Variable CMAKE_FIND_PACKAGE_WARN_NO_MODULE enabled this warning.)";
|
||||
this->Makefile->IssueMessage(cmake::AUTHOR_WARNING, aw.str());
|
||||
this->Makefile->IssueMessage(MessageType::AUTHOR_WARNING, aw.str());
|
||||
}
|
||||
|
||||
// No find module. Assume the project has a CMake config file. Use
|
||||
@@ -667,7 +668,7 @@ bool cmFindPackageCommand::FindModule(bool& found)
|
||||
case cmPolicies::WARN: {
|
||||
std::ostringstream e;
|
||||
e << cmPolicies::GetPolicyWarning(it->second) << "\n";
|
||||
this->Makefile->IssueMessage(cmake::AUTHOR_WARNING, e.str());
|
||||
this->Makefile->IssueMessage(MessageType::AUTHOR_WARNING, e.str());
|
||||
CM_FALLTHROUGH;
|
||||
}
|
||||
case cmPolicies::OLD:
|
||||
@@ -736,7 +737,8 @@ bool cmFindPackageCommand::HandlePackageMode()
|
||||
// Sanity check.
|
||||
if (fileFound && this->FileFound.empty()) {
|
||||
this->Makefile->IssueMessage(
|
||||
cmake::INTERNAL_ERROR, "fileFound is true but FileFound is empty!");
|
||||
MessageType::INTERNAL_ERROR,
|
||||
"fileFound is true but FileFound is empty!");
|
||||
fileFound = false;
|
||||
}
|
||||
}
|
||||
@@ -887,14 +889,15 @@ bool cmFindPackageCommand::HandlePackageMode()
|
||||
}
|
||||
}
|
||||
|
||||
this->Makefile->IssueMessage(
|
||||
this->Required ? cmake::FATAL_ERROR : cmake::WARNING, e.str());
|
||||
this->Makefile->IssueMessage(this->Required ? MessageType::FATAL_ERROR
|
||||
: MessageType::WARNING,
|
||||
e.str());
|
||||
if (this->Required) {
|
||||
cmSystemTools::SetFatalErrorOccured();
|
||||
}
|
||||
|
||||
if (!aw.str().empty()) {
|
||||
this->Makefile->IssueMessage(cmake::AUTHOR_WARNING, aw.str());
|
||||
this->Makefile->IssueMessage(MessageType::AUTHOR_WARNING, aw.str());
|
||||
}
|
||||
}
|
||||
// output result if in config mode but not in quiet mode
|
||||
|
||||
@@ -10,8 +10,8 @@
|
||||
#include "cmAlgorithms.h"
|
||||
#include "cmExecutionStatus.h"
|
||||
#include "cmMakefile.h"
|
||||
#include "cmMessageType.h"
|
||||
#include "cmSystemTools.h"
|
||||
#include "cmake.h"
|
||||
|
||||
cmForEachFunctionBlocker::cmForEachFunctionBlocker(cmMakefile* mf)
|
||||
: Makefile(mf)
|
||||
@@ -210,7 +210,7 @@ bool cmForEachCommand::HandleInMode(std::vector<std::string> const& args)
|
||||
std::ostringstream e;
|
||||
e << "Unknown argument:\n"
|
||||
<< " " << args[i] << "\n";
|
||||
this->Makefile->IssueMessage(cmake::FATAL_ERROR, e.str());
|
||||
this->Makefile->IssueMessage(MessageType::FATAL_ERROR, e.str());
|
||||
return true;
|
||||
}
|
||||
}
|
||||
|
||||
@@ -7,6 +7,7 @@
|
||||
#include "cmGeneratorExpressionEvaluator.h"
|
||||
#include "cmGeneratorTarget.h"
|
||||
#include "cmLocalGenerator.h"
|
||||
#include "cmMessageType.h"
|
||||
#include "cmake.h"
|
||||
|
||||
#include <sstream>
|
||||
@@ -99,8 +100,8 @@ void cmGeneratorExpressionDAGChecker::ReportError(
|
||||
<< " " << expr << "\n"
|
||||
<< "Self reference on target \"" << context->HeadTarget->GetName()
|
||||
<< "\".\n";
|
||||
context->LG->GetCMakeInstance()->IssueMessage(cmake::FATAL_ERROR, e.str(),
|
||||
parent->Backtrace);
|
||||
context->LG->GetCMakeInstance()->IssueMessage(MessageType::FATAL_ERROR,
|
||||
e.str(), parent->Backtrace);
|
||||
return;
|
||||
}
|
||||
|
||||
@@ -111,8 +112,8 @@ void cmGeneratorExpressionDAGChecker::ReportError(
|
||||
<< " " << expr << "\n"
|
||||
<< "Dependency loop found.";
|
||||
/* clang-format on */
|
||||
context->LG->GetCMakeInstance()->IssueMessage(cmake::FATAL_ERROR, e.str(),
|
||||
context->Backtrace);
|
||||
context->LG->GetCMakeInstance()->IssueMessage(MessageType::FATAL_ERROR,
|
||||
e.str(), context->Backtrace);
|
||||
}
|
||||
|
||||
int loopStep = 1;
|
||||
@@ -122,8 +123,8 @@ void cmGeneratorExpressionDAGChecker::ReportError(
|
||||
<< " "
|
||||
<< (parent->Content ? parent->Content->GetOriginalExpression() : expr)
|
||||
<< "\n";
|
||||
context->LG->GetCMakeInstance()->IssueMessage(cmake::FATAL_ERROR, e.str(),
|
||||
parent->Backtrace);
|
||||
context->LG->GetCMakeInstance()->IssueMessage(MessageType::FATAL_ERROR,
|
||||
e.str(), parent->Backtrace);
|
||||
parent = parent->Parent;
|
||||
++loopStep;
|
||||
}
|
||||
|
||||
@@ -12,10 +12,10 @@
|
||||
#include "cmListFileCache.h"
|
||||
#include "cmLocalGenerator.h"
|
||||
#include "cmMakefile.h"
|
||||
#include "cmMessageType.h"
|
||||
#include "cmSourceFile.h"
|
||||
#include "cmSourceFileLocationKind.h"
|
||||
#include "cmSystemTools.h"
|
||||
#include "cmake.h"
|
||||
|
||||
cmGeneratorExpressionEvaluationFile::cmGeneratorExpressionEvaluationFile(
|
||||
const std::string& input,
|
||||
@@ -48,7 +48,7 @@ void cmGeneratorExpressionEvaluationFile::Generate(
|
||||
<< "\" did "
|
||||
"not evaluate to valid content. Got \""
|
||||
<< condResult << "\".";
|
||||
lg->IssueMessage(cmake::FATAL_ERROR, e.str());
|
||||
lg->IssueMessage(MessageType::FATAL_ERROR, e.str());
|
||||
return;
|
||||
}
|
||||
}
|
||||
@@ -77,7 +77,7 @@ void cmGeneratorExpressionEvaluationFile::Generate(
|
||||
"This is generally caused by the content evaluating the "
|
||||
"configuration type, language, or location of object files:\n "
|
||||
<< outputFileName;
|
||||
lg->IssueMessage(cmake::FATAL_ERROR, e.str());
|
||||
lg->IssueMessage(MessageType::FATAL_ERROR, e.str());
|
||||
return;
|
||||
}
|
||||
|
||||
@@ -137,7 +137,7 @@ void cmGeneratorExpressionEvaluationFile::Generate(cmLocalGenerator* lg)
|
||||
if (!fin) {
|
||||
std::ostringstream e;
|
||||
e << "Evaluation file \"" << inputFileName << "\" cannot be read.";
|
||||
lg->IssueMessage(cmake::FATAL_ERROR, e.str());
|
||||
lg->IssueMessage(MessageType::FATAL_ERROR, e.str());
|
||||
return;
|
||||
}
|
||||
|
||||
@@ -204,7 +204,7 @@ std::string cmGeneratorExpressionEvaluationFile::FixRelativePath(
|
||||
"undefined behavior will be used."
|
||||
;
|
||||
/* clang-format on */
|
||||
lg->IssueMessage(cmake::AUTHOR_WARNING, w.str());
|
||||
lg->IssueMessage(MessageType::AUTHOR_WARNING, w.str());
|
||||
}
|
||||
CM_FALLTHROUGH;
|
||||
case cmPolicies::OLD:
|
||||
|
||||
@@ -12,6 +12,7 @@
|
||||
#include "cmLinkItem.h"
|
||||
#include "cmLocalGenerator.h"
|
||||
#include "cmMakefile.h"
|
||||
#include "cmMessageType.h"
|
||||
#include "cmOutputConverter.h"
|
||||
#include "cmPolicies.h"
|
||||
#include "cmStateTypes.h"
|
||||
@@ -304,7 +305,7 @@ static const struct InListNode : public cmGeneratorExpressionNode
|
||||
<< "\nSearch Item:\n \"" << parameters.front()
|
||||
<< "\"\nList:\n \"" << parameters[1] << "\"\n";
|
||||
context->LG->GetCMakeInstance()->IssueMessage(
|
||||
cmake::AUTHOR_WARNING, e.str(), context->Backtrace);
|
||||
MessageType ::AUTHOR_WARNING, e.str(), context->Backtrace);
|
||||
return "0";
|
||||
}
|
||||
if (values.empty()) {
|
||||
@@ -632,7 +633,7 @@ struct CompilerIdNode : public cmGeneratorExpressionNode
|
||||
std::ostringstream e;
|
||||
e << cmPolicies::GetPolicyWarning(cmPolicies::CMP0044);
|
||||
context->LG->GetCMakeInstance()->IssueMessage(
|
||||
cmake::AUTHOR_WARNING, e.str(), context->Backtrace);
|
||||
MessageType::AUTHOR_WARNING, e.str(), context->Backtrace);
|
||||
CM_FALLTHROUGH;
|
||||
}
|
||||
case cmPolicies::OLD:
|
||||
@@ -1654,7 +1655,7 @@ static const struct TargetPolicyNode : public cmGeneratorExpressionNode
|
||||
switch (statusForTarget(context->HeadTarget, policy)) {
|
||||
case cmPolicies::WARN:
|
||||
lg->IssueMessage(
|
||||
cmake::AUTHOR_WARNING,
|
||||
MessageType::AUTHOR_WARNING,
|
||||
cmPolicies::GetPolicyWarning(policyForString(policy)));
|
||||
CM_FALLTHROUGH;
|
||||
case cmPolicies::REQUIRED_IF_USED:
|
||||
@@ -2096,6 +2097,6 @@ void reportError(cmGeneratorExpressionContext* context,
|
||||
<< " " << expr << "\n"
|
||||
<< result;
|
||||
/* clang-format on */
|
||||
context->LG->GetCMakeInstance()->IssueMessage(cmake::FATAL_ERROR, e.str(),
|
||||
context->Backtrace);
|
||||
context->LG->GetCMakeInstance()->IssueMessage(MessageType::FATAL_ERROR,
|
||||
e.str(), context->Backtrace);
|
||||
}
|
||||
|
||||
@@ -25,6 +25,7 @@
|
||||
#include "cmGlobalGenerator.h"
|
||||
#include "cmLocalGenerator.h"
|
||||
#include "cmMakefile.h"
|
||||
#include "cmMessageType.h"
|
||||
#include "cmPropertyMap.h"
|
||||
#include "cmSourceFile.h"
|
||||
#include "cmSourceFileLocation.h"
|
||||
@@ -340,7 +341,7 @@ std::string cmGeneratorTarget::GetOutputName(
|
||||
// An empty map entry indicates we have been called recursively
|
||||
// from the above block.
|
||||
this->LocalGenerator->GetCMakeInstance()->IssueMessage(
|
||||
cmake::FATAL_ERROR,
|
||||
MessageType::FATAL_ERROR,
|
||||
"Target '" + this->GetName() + "' OUTPUT_NAME depends on itself.",
|
||||
this->GetBacktrace());
|
||||
}
|
||||
@@ -512,7 +513,7 @@ const char* cmGeneratorTarget::GetLinkPIEProperty(
|
||||
case cmPolicies::WARN: {
|
||||
std::ostringstream e;
|
||||
e << cmPolicies::GetPolicyWarning(cmPolicies::CMP0083);
|
||||
this->LocalGenerator->IssueMessage(cmake::AUTHOR_WARNING, e.str());
|
||||
this->LocalGenerator->IssueMessage(MessageType::AUTHOR_WARNING, e.str());
|
||||
CM_FALLTHROUGH;
|
||||
}
|
||||
case cmPolicies::OLD:
|
||||
@@ -559,7 +560,7 @@ bool cmGeneratorTarget::IsIPOEnabled(std::string const& lang,
|
||||
w << "INTERPROCEDURAL_OPTIMIZATION property will be ignored for target "
|
||||
<< "'" << this->GetName() << "'.";
|
||||
this->LocalGenerator->GetCMakeInstance()->IssueMessage(
|
||||
cmake::AUTHOR_WARNING, w.str(), this->GetBacktrace());
|
||||
MessageType::AUTHOR_WARNING, w.str(), this->GetBacktrace());
|
||||
|
||||
this->PolicyReportedCMP0069 = true;
|
||||
}
|
||||
@@ -590,7 +591,7 @@ bool cmGeneratorTarget::IsIPOEnabled(std::string const& lang,
|
||||
this->PolicyReportedCMP0069 = true;
|
||||
|
||||
this->LocalGenerator->GetCMakeInstance()->IssueMessage(
|
||||
cmake::FATAL_ERROR, message, this->GetBacktrace());
|
||||
MessageType::FATAL_ERROR, message, this->GetBacktrace());
|
||||
return false;
|
||||
}
|
||||
|
||||
@@ -924,7 +925,7 @@ static bool processSources(
|
||||
if (fullPath.empty()) {
|
||||
if (!e.empty()) {
|
||||
cmake* cm = tgt->GetLocalGenerator()->GetCMakeInstance();
|
||||
cm->IssueMessage(cmake::FATAL_ERROR, e, tgt->GetBacktrace());
|
||||
cm->IssueMessage(MessageType::FATAL_ERROR, e, tgt->GetBacktrace());
|
||||
}
|
||||
return contextDependent;
|
||||
}
|
||||
@@ -939,7 +940,8 @@ static bool processSources(
|
||||
err << "Found relative path while evaluating sources of \""
|
||||
<< tgt->GetName() << "\":\n \"" << src << "\"\n";
|
||||
}
|
||||
tgt->GetLocalGenerator()->IssueMessage(cmake::FATAL_ERROR, err.str());
|
||||
tgt->GetLocalGenerator()->IssueMessage(MessageType::FATAL_ERROR,
|
||||
err.str());
|
||||
return contextDependent;
|
||||
}
|
||||
src = fullPath;
|
||||
@@ -955,7 +957,7 @@ static bool processSources(
|
||||
}
|
||||
if (!usedSources.empty()) {
|
||||
tgt->GetLocalGenerator()->GetCMakeInstance()->IssueMessage(
|
||||
cmake::LOG,
|
||||
MessageType::LOG,
|
||||
std::string("Used sources for target ") + tgt->GetName() + ":\n" +
|
||||
usedSources,
|
||||
entry->ge->GetBacktrace());
|
||||
@@ -1129,7 +1131,7 @@ cmGeneratorTarget::KindedSources const& cmGeneratorTarget::GetKindedSources(
|
||||
<< "\" use a generator expression that depends on the "
|
||||
"SOURCES themselves.";
|
||||
this->GlobalGenerator->GetCMakeInstance()->IssueMessage(
|
||||
cmake::FATAL_ERROR, e.str(), this->GetBacktrace());
|
||||
MessageType::FATAL_ERROR, e.str(), this->GetBacktrace());
|
||||
static KindedSources empty;
|
||||
return empty;
|
||||
}
|
||||
@@ -1230,7 +1232,7 @@ void cmGeneratorTarget::ComputeKindedSources(KindedSources& files,
|
||||
e << "but may contain only sources that compile, header files, and "
|
||||
"other files that would not affect linking of a normal library.";
|
||||
this->GlobalGenerator->GetCMakeInstance()->IssueMessage(
|
||||
cmake::FATAL_ERROR, e.str(), this->GetBacktrace());
|
||||
MessageType::FATAL_ERROR, e.str(), this->GetBacktrace());
|
||||
}
|
||||
}
|
||||
|
||||
@@ -1388,7 +1390,7 @@ bool cmGeneratorTarget::NeedRelinkBeforeInstall(
|
||||
/* clang-format on */
|
||||
|
||||
cmake* cm = this->LocalGenerator->GetCMakeInstance();
|
||||
cm->IssueMessage(cmake::FATAL_ERROR, w.str(), this->GetBacktrace());
|
||||
cm->IssueMessage(MessageType::FATAL_ERROR, w.str(), this->GetBacktrace());
|
||||
}
|
||||
|
||||
return have_rpath;
|
||||
@@ -1519,7 +1521,7 @@ bool cmGeneratorTarget::HasMacOSXRpathInstallNameDir(
|
||||
w << " less than 10.5 or because CMake's platform configuration is";
|
||||
w << " corrupt.";
|
||||
cmake* cm = this->LocalGenerator->GetCMakeInstance();
|
||||
cm->IssueMessage(cmake::FATAL_ERROR, w.str(), this->GetBacktrace());
|
||||
cm->IssueMessage(MessageType::FATAL_ERROR, w.str(), this->GetBacktrace());
|
||||
}
|
||||
|
||||
return true;
|
||||
@@ -1819,13 +1821,13 @@ public:
|
||||
if (!item.Target) {
|
||||
if (item.AsStr().find("::") != std::string::npos) {
|
||||
bool noMessage = false;
|
||||
cmake::MessageType messageType = cmake::FATAL_ERROR;
|
||||
MessageType messageType = MessageType::FATAL_ERROR;
|
||||
std::ostringstream e;
|
||||
switch (this->Target->GetLocalGenerator()->GetPolicyStatus(
|
||||
cmPolicies::CMP0028)) {
|
||||
case cmPolicies::WARN: {
|
||||
e << cmPolicies::GetPolicyWarning(cmPolicies::CMP0028) << "\n";
|
||||
messageType = cmake::AUTHOR_WARNING;
|
||||
messageType = MessageType::AUTHOR_WARNING;
|
||||
} break;
|
||||
case cmPolicies::OLD:
|
||||
noMessage = true;
|
||||
@@ -1928,7 +1930,7 @@ public:
|
||||
}
|
||||
e << "Set the LINKER_LANGUAGE property for this target.";
|
||||
cmake* cm = this->Target->GetLocalGenerator()->GetCMakeInstance();
|
||||
cm->IssueMessage(cmake::FATAL_ERROR, e.str(),
|
||||
cm->IssueMessage(MessageType::FATAL_ERROR, e.str(),
|
||||
this->Target->GetBacktrace());
|
||||
}
|
||||
return *this->Preferred.begin();
|
||||
@@ -2053,7 +2055,7 @@ cmGeneratorTarget::CompileInfo const* cmGeneratorTarget::GetCompileInfo(
|
||||
msg += this->GetName();
|
||||
msg += " which has type ";
|
||||
msg += cmState::GetTargetTypeName(this->GetType());
|
||||
this->LocalGenerator->IssueMessage(cmake::INTERNAL_ERROR, msg);
|
||||
this->LocalGenerator->IssueMessage(MessageType::INTERNAL_ERROR, msg);
|
||||
return nullptr;
|
||||
}
|
||||
|
||||
@@ -2239,7 +2241,7 @@ cmTargetTraceDependencies::cmTargetTraceDependencies(cmGeneratorTarget* target)
|
||||
<< "\"\ndepends on the sources of a target it is used in. This "
|
||||
"is a dependency loop and is not allowed.";
|
||||
this->GeneratorTarget->LocalGenerator->IssueMessage(
|
||||
cmake::FATAL_ERROR, e.str());
|
||||
MessageType::FATAL_ERROR, e.str());
|
||||
return;
|
||||
}
|
||||
if (emitted.insert(sf).second &&
|
||||
@@ -2551,14 +2553,14 @@ static void processIncludeDirectories(
|
||||
for (std::string& entryInclude : entryIncludes) {
|
||||
if (fromImported && !cmSystemTools::FileExists(entryInclude)) {
|
||||
std::ostringstream e;
|
||||
cmake::MessageType messageType = cmake::FATAL_ERROR;
|
||||
MessageType messageType = MessageType::FATAL_ERROR;
|
||||
if (checkCMP0027) {
|
||||
switch (tgt->GetPolicyStatusCMP0027()) {
|
||||
case cmPolicies::WARN:
|
||||
e << cmPolicies::GetPolicyWarning(cmPolicies::CMP0027) << "\n";
|
||||
CM_FALLTHROUGH;
|
||||
case cmPolicies::OLD:
|
||||
messageType = cmake::AUTHOR_WARNING;
|
||||
messageType = MessageType::AUTHOR_WARNING;
|
||||
break;
|
||||
case cmPolicies::REQUIRED_ALWAYS:
|
||||
case cmPolicies::REQUIRED_IF_USED:
|
||||
@@ -2584,7 +2586,7 @@ static void processIncludeDirectories(
|
||||
if (!cmSystemTools::FileIsFullPath(entryInclude)) {
|
||||
std::ostringstream e;
|
||||
bool noMessage = false;
|
||||
cmake::MessageType messageType = cmake::FATAL_ERROR;
|
||||
MessageType messageType = MessageType::FATAL_ERROR;
|
||||
if (!targetName.empty()) {
|
||||
/* clang-format off */
|
||||
e << "Target \"" << targetName << "\" contains relative "
|
||||
@@ -2595,7 +2597,7 @@ static void processIncludeDirectories(
|
||||
switch (tgt->GetPolicyStatusCMP0021()) {
|
||||
case cmPolicies::WARN: {
|
||||
e << cmPolicies::GetPolicyWarning(cmPolicies::CMP0021) << "\n";
|
||||
messageType = cmake::AUTHOR_WARNING;
|
||||
messageType = MessageType::AUTHOR_WARNING;
|
||||
} break;
|
||||
case cmPolicies::OLD:
|
||||
noMessage = true;
|
||||
@@ -2611,7 +2613,7 @@ static void processIncludeDirectories(
|
||||
}
|
||||
if (!noMessage) {
|
||||
tgt->GetLocalGenerator()->IssueMessage(messageType, e.str());
|
||||
if (messageType == cmake::FATAL_ERROR) {
|
||||
if (messageType == MessageType::FATAL_ERROR) {
|
||||
return;
|
||||
}
|
||||
}
|
||||
@@ -2631,7 +2633,7 @@ static void processIncludeDirectories(
|
||||
}
|
||||
if (!usedIncludes.empty()) {
|
||||
tgt->GetLocalGenerator()->GetCMakeInstance()->IssueMessage(
|
||||
cmake::LOG,
|
||||
MessageType::LOG,
|
||||
std::string("Used includes for target ") + tgt->GetName() + ":\n" +
|
||||
usedIncludes,
|
||||
entry->ge->GetBacktrace());
|
||||
@@ -2744,7 +2746,7 @@ static void processOptionsInternal(
|
||||
}
|
||||
if (!usedOptions.empty()) {
|
||||
tgt->GetLocalGenerator()->GetCMakeInstance()->IssueMessage(
|
||||
cmake::LOG,
|
||||
MessageType::LOG,
|
||||
std::string("Used ") + logName + std::string(" for target ") +
|
||||
tgt->GetName() + ":\n" + usedOptions,
|
||||
entry->ge->GetBacktrace());
|
||||
@@ -2946,7 +2948,8 @@ std::vector<BT<std::string>> cmGeneratorTarget::GetCompileDefinitions(
|
||||
case cmPolicies::WARN: {
|
||||
std::ostringstream e;
|
||||
e << cmPolicies::GetPolicyWarning(cmPolicies::CMP0043);
|
||||
this->LocalGenerator->IssueMessage(cmake::AUTHOR_WARNING, e.str());
|
||||
this->LocalGenerator->IssueMessage(MessageType::AUTHOR_WARNING,
|
||||
e.str());
|
||||
CM_FALLTHROUGH;
|
||||
}
|
||||
case cmPolicies::OLD: {
|
||||
@@ -3085,7 +3088,7 @@ std::vector<BT<std::string>> cmGeneratorTarget::GetLinkOptions(
|
||||
return item.find(SHELL) != std::string::npos;
|
||||
}) != linkerOptions.end()) {
|
||||
this->LocalGenerator->GetCMakeInstance()->IssueMessage(
|
||||
cmake::FATAL_ERROR,
|
||||
MessageType::FATAL_ERROR,
|
||||
"'SHELL:' prefix is not supported as part of 'LINKER:' arguments.",
|
||||
this->GetBacktrace());
|
||||
return result;
|
||||
@@ -3219,7 +3222,7 @@ void processLinkDirectories(
|
||||
if (!cmSystemTools::FileIsFullPath(entryDirectory)) {
|
||||
std::ostringstream e;
|
||||
bool noMessage = false;
|
||||
cmake::MessageType messageType = cmake::FATAL_ERROR;
|
||||
MessageType messageType = MessageType::FATAL_ERROR;
|
||||
if (!targetName.empty()) {
|
||||
/* clang-format off */
|
||||
e << "Target \"" << targetName << "\" contains relative "
|
||||
@@ -3230,7 +3233,7 @@ void processLinkDirectories(
|
||||
switch (tgt->GetPolicyStatusCMP0081()) {
|
||||
case cmPolicies::WARN: {
|
||||
e << cmPolicies::GetPolicyWarning(cmPolicies::CMP0081) << "\n";
|
||||
messageType = cmake::AUTHOR_WARNING;
|
||||
messageType = MessageType::AUTHOR_WARNING;
|
||||
} break;
|
||||
case cmPolicies::OLD:
|
||||
noMessage = true;
|
||||
@@ -3247,7 +3250,7 @@ void processLinkDirectories(
|
||||
}
|
||||
if (!noMessage) {
|
||||
tgt->GetLocalGenerator()->IssueMessage(messageType, e.str());
|
||||
if (messageType == cmake::FATAL_ERROR) {
|
||||
if (messageType == MessageType::FATAL_ERROR) {
|
||||
return;
|
||||
}
|
||||
}
|
||||
@@ -3265,7 +3268,7 @@ void processLinkDirectories(
|
||||
}
|
||||
if (!usedDirectories.empty()) {
|
||||
tgt->GetLocalGenerator()->GetCMakeInstance()->IssueMessage(
|
||||
cmake::LOG,
|
||||
MessageType::LOG,
|
||||
std::string("Used link directories for target ") + tgt->GetName() +
|
||||
":\n" + usedDirectories,
|
||||
entry->ge->GetBacktrace());
|
||||
@@ -3511,7 +3514,7 @@ std::string cmGeneratorTarget::NormalGetRealName(
|
||||
if (this->IsImported()) {
|
||||
std::string msg = "NormalGetRealName called on imported target: ";
|
||||
msg += this->GetName();
|
||||
this->LocalGenerator->IssueMessage(cmake::INTERNAL_ERROR, msg);
|
||||
this->LocalGenerator->IssueMessage(MessageType::INTERNAL_ERROR, msg);
|
||||
}
|
||||
|
||||
if (this->GetType() == cmStateEnums::EXECUTABLE) {
|
||||
@@ -3545,7 +3548,7 @@ void cmGeneratorTarget::GetLibraryNames(std::string& name, std::string& soName,
|
||||
if (this->IsImported()) {
|
||||
std::string msg = "GetLibraryNames called on imported target: ";
|
||||
msg += this->GetName();
|
||||
this->LocalGenerator->IssueMessage(cmake::INTERNAL_ERROR, msg);
|
||||
this->LocalGenerator->IssueMessage(MessageType::INTERNAL_ERROR, msg);
|
||||
return;
|
||||
}
|
||||
|
||||
@@ -3622,7 +3625,7 @@ void cmGeneratorTarget::GetExecutableNames(std::string& name,
|
||||
if (this->IsImported()) {
|
||||
std::string msg = "GetExecutableNames called on imported target: ";
|
||||
msg += this->GetName();
|
||||
this->LocalGenerator->IssueMessage(cmake::INTERNAL_ERROR, msg);
|
||||
this->LocalGenerator->IssueMessage(MessageType::INTERNAL_ERROR, msg);
|
||||
}
|
||||
|
||||
// This versioning is supported only for executables and then only
|
||||
@@ -4123,7 +4126,8 @@ void checkPropertyConsistency(cmGeneratorTarget const* depender,
|
||||
"This is not allowed. Only user-defined properties may appear "
|
||||
"listed in the "
|
||||
<< propName << " property.";
|
||||
depender->GetLocalGenerator()->IssueMessage(cmake::FATAL_ERROR, e.str());
|
||||
depender->GetLocalGenerator()->IssueMessage(MessageType::FATAL_ERROR,
|
||||
e.str());
|
||||
return;
|
||||
}
|
||||
if (emitted.insert(p).second) {
|
||||
@@ -4263,7 +4267,7 @@ void cmGeneratorTarget::CheckPropertyCompatibility(
|
||||
"in a boolean interpretation, a numeric minimum, a numeric maximum "
|
||||
"or a "
|
||||
"string interpretation, but not a mixture.";
|
||||
this->LocalGenerator->IssueMessage(cmake::FATAL_ERROR, e.str());
|
||||
this->LocalGenerator->IssueMessage(MessageType::FATAL_ERROR, e.str());
|
||||
}
|
||||
}
|
||||
|
||||
@@ -4863,7 +4867,8 @@ void cmGeneratorTarget::ReportPropertyOrigin(
|
||||
areport += result;
|
||||
areport += "\"):\n" + report;
|
||||
|
||||
this->LocalGenerator->GetCMakeInstance()->IssueMessage(cmake::LOG, areport);
|
||||
this->LocalGenerator->GetCMakeInstance()->IssueMessage(MessageType::LOG,
|
||||
areport);
|
||||
}
|
||||
|
||||
void cmGeneratorTarget::LookupLinkItems(std::vector<std::string> const& names,
|
||||
@@ -5092,7 +5097,7 @@ cmGeneratorTarget::OutputInfo const* cmGeneratorTarget::GetOutputInfo(
|
||||
msg += this->GetName();
|
||||
msg += " which has type ";
|
||||
msg += cmState::GetTargetTypeName(this->GetType());
|
||||
this->LocalGenerator->IssueMessage(cmake::INTERNAL_ERROR, msg);
|
||||
this->LocalGenerator->IssueMessage(MessageType::INTERNAL_ERROR, msg);
|
||||
return nullptr;
|
||||
}
|
||||
|
||||
@@ -5123,7 +5128,7 @@ cmGeneratorTarget::OutputInfo const* cmGeneratorTarget::GetOutputInfo(
|
||||
// An empty map entry indicates we have been called recursively
|
||||
// from the above block.
|
||||
this->LocalGenerator->GetCMakeInstance()->IssueMessage(
|
||||
cmake::FATAL_ERROR,
|
||||
MessageType::FATAL_ERROR,
|
||||
"Target '" + this->GetName() + "' OUTPUT_DIRECTORY depends on itself.",
|
||||
this->GetBacktrace());
|
||||
return nullptr;
|
||||
@@ -5343,7 +5348,7 @@ void cmGeneratorTarget::ComputeLinkInterfaceLibraries(
|
||||
linkIfaceProp << ":\n"
|
||||
" " << explicitLibraries << "\n";
|
||||
/* clang-format on */
|
||||
this->LocalGenerator->IssueMessage(cmake::AUTHOR_WARNING, w.str());
|
||||
this->LocalGenerator->IssueMessage(MessageType::AUTHOR_WARNING, w.str());
|
||||
this->PolicyWarnedCMP0022 = true;
|
||||
}
|
||||
}
|
||||
@@ -5412,7 +5417,8 @@ void cmGeneratorTarget::ComputeLinkInterfaceLibraries(
|
||||
"Link implementation:\n"
|
||||
" " << oldLibraries << "\n";
|
||||
/* clang-format on */
|
||||
this->LocalGenerator->IssueMessage(cmake::AUTHOR_WARNING, w.str());
|
||||
this->LocalGenerator->IssueMessage(MessageType::AUTHOR_WARNING,
|
||||
w.str());
|
||||
this->PolicyWarnedCMP0022 = true;
|
||||
}
|
||||
}
|
||||
@@ -5720,7 +5726,7 @@ bool cmGeneratorTarget::GetConfigCommonSourceFiles(
|
||||
"Config \"" << *it << "\":\n"
|
||||
" " << thisConfigFiles << "\n";
|
||||
/* clang-format on */
|
||||
this->LocalGenerator->IssueMessage(cmake::FATAL_ERROR, e.str());
|
||||
this->LocalGenerator->IssueMessage(MessageType::FATAL_ERROR, e.str());
|
||||
return false;
|
||||
}
|
||||
}
|
||||
@@ -5778,7 +5784,8 @@ std::string cmGeneratorTarget::CheckCMP0004(std::string const& item) const
|
||||
w << cmPolicies::GetPolicyWarning(cmPolicies::CMP0004) << "\n"
|
||||
<< "Target \"" << this->GetName() << "\" links to item \"" << item
|
||||
<< "\" which has leading or trailing whitespace.";
|
||||
cm->IssueMessage(cmake::AUTHOR_WARNING, w.str(), this->GetBacktrace());
|
||||
cm->IssueMessage(MessageType::AUTHOR_WARNING, w.str(),
|
||||
this->GetBacktrace());
|
||||
}
|
||||
case cmPolicies::OLD:
|
||||
break;
|
||||
@@ -5787,7 +5794,8 @@ std::string cmGeneratorTarget::CheckCMP0004(std::string const& item) const
|
||||
e << "Target \"" << this->GetName() << "\" links to item \"" << item
|
||||
<< "\" which has leading or trailing whitespace. "
|
||||
<< "This is now an error according to policy CMP0004.";
|
||||
cm->IssueMessage(cmake::FATAL_ERROR, e.str(), this->GetBacktrace());
|
||||
cm->IssueMessage(MessageType::FATAL_ERROR, e.str(),
|
||||
this->GetBacktrace());
|
||||
} break;
|
||||
case cmPolicies::REQUIRED_IF_USED:
|
||||
case cmPolicies::REQUIRED_ALWAYS: {
|
||||
@@ -5795,7 +5803,8 @@ std::string cmGeneratorTarget::CheckCMP0004(std::string const& item) const
|
||||
e << cmPolicies::GetRequiredPolicyError(cmPolicies::CMP0004) << "\n"
|
||||
<< "Target \"" << this->GetName() << "\" links to item \"" << item
|
||||
<< "\" which has leading or trailing whitespace.";
|
||||
cm->IssueMessage(cmake::FATAL_ERROR, e.str(), this->GetBacktrace());
|
||||
cm->IssueMessage(MessageType::FATAL_ERROR, e.str(),
|
||||
this->GetBacktrace());
|
||||
} break;
|
||||
}
|
||||
}
|
||||
@@ -5959,12 +5968,12 @@ void cmGeneratorTarget::ComputeLinkImplementationLibraries(
|
||||
if (name == this->GetName() || name.empty()) {
|
||||
if (name == this->GetName()) {
|
||||
bool noMessage = false;
|
||||
cmake::MessageType messageType = cmake::FATAL_ERROR;
|
||||
MessageType messageType = MessageType::FATAL_ERROR;
|
||||
std::ostringstream e;
|
||||
switch (this->GetPolicyStatusCMP0038()) {
|
||||
case cmPolicies::WARN: {
|
||||
e << cmPolicies::GetPolicyWarning(cmPolicies::CMP0038) << "\n";
|
||||
messageType = cmake::AUTHOR_WARNING;
|
||||
messageType = MessageType::AUTHOR_WARNING;
|
||||
} break;
|
||||
case cmPolicies::OLD:
|
||||
noMessage = true;
|
||||
@@ -5979,7 +5988,7 @@ void cmGeneratorTarget::ComputeLinkImplementationLibraries(
|
||||
e << "Target \"" << this->GetName() << "\" links to itself.";
|
||||
this->LocalGenerator->GetCMakeInstance()->IssueMessage(
|
||||
messageType, e.str(), this->GetBacktrace());
|
||||
if (messageType == cmake::FATAL_ERROR) {
|
||||
if (messageType == MessageType::FATAL_ERROR) {
|
||||
return;
|
||||
}
|
||||
}
|
||||
|
||||
@@ -4,9 +4,9 @@
|
||||
|
||||
#include "cmGlobalGenerator.h"
|
||||
#include "cmMakefile.h"
|
||||
#include "cmMessageType.h"
|
||||
#include "cmPolicies.h"
|
||||
#include "cmSystemTools.h"
|
||||
#include "cmake.h"
|
||||
|
||||
class cmExecutionStatus;
|
||||
|
||||
@@ -76,7 +76,7 @@ bool cmGetDirectoryPropertyCommand::InitialPass(
|
||||
switch (this->Makefile->GetPolicyStatus(cmPolicies::CMP0059)) {
|
||||
case cmPolicies::WARN:
|
||||
this->Makefile->IssueMessage(
|
||||
cmake::AUTHOR_WARNING,
|
||||
MessageType::AUTHOR_WARNING,
|
||||
cmPolicies::GetPolicyWarning(cmPolicies::CMP0059));
|
||||
CM_FALLTHROUGH;
|
||||
case cmPolicies::OLD:
|
||||
|
||||
@@ -8,6 +8,7 @@
|
||||
#include "cmInstalledFile.h"
|
||||
#include "cmListFileCache.h"
|
||||
#include "cmMakefile.h"
|
||||
#include "cmMessageType.h"
|
||||
#include "cmPolicies.h"
|
||||
#include "cmProperty.h"
|
||||
#include "cmPropertyDefinition.h"
|
||||
@@ -230,7 +231,7 @@ bool cmGetPropertyCommand::HandleDirectoryMode()
|
||||
if (this->PropertyName == "DEFINITIONS") {
|
||||
switch (mf->GetPolicyStatus(cmPolicies::CMP0059)) {
|
||||
case cmPolicies::WARN:
|
||||
mf->IssueMessage(cmake::AUTHOR_WARNING,
|
||||
mf->IssueMessage(MessageType::AUTHOR_WARNING,
|
||||
cmPolicies::GetPolicyWarning(cmPolicies::CMP0059));
|
||||
CM_FALLTHROUGH;
|
||||
case cmPolicies::OLD:
|
||||
|
||||
@@ -6,10 +6,10 @@
|
||||
|
||||
#include "cmListFileCache.h"
|
||||
#include "cmMakefile.h"
|
||||
#include "cmMessageType.h"
|
||||
#include "cmPolicies.h"
|
||||
#include "cmTarget.h"
|
||||
#include "cmTargetPropertyComputer.h"
|
||||
#include "cmake.h"
|
||||
|
||||
class cmExecutionStatus;
|
||||
class cmMessenger;
|
||||
@@ -52,7 +52,7 @@ bool cmGetTargetPropertyCommand::InitialPass(
|
||||
} else {
|
||||
bool issueMessage = false;
|
||||
std::ostringstream e;
|
||||
cmake::MessageType messageType = cmake::AUTHOR_WARNING;
|
||||
MessageType messageType = MessageType::AUTHOR_WARNING;
|
||||
switch (this->Makefile->GetPolicyStatus(cmPolicies::CMP0045)) {
|
||||
case cmPolicies::WARN:
|
||||
issueMessage = true;
|
||||
@@ -63,13 +63,13 @@ bool cmGetTargetPropertyCommand::InitialPass(
|
||||
case cmPolicies::REQUIRED_ALWAYS:
|
||||
case cmPolicies::NEW:
|
||||
issueMessage = true;
|
||||
messageType = cmake::FATAL_ERROR;
|
||||
messageType = MessageType::FATAL_ERROR;
|
||||
}
|
||||
if (issueMessage) {
|
||||
e << "get_target_property() called with non-existent target \""
|
||||
<< targetName << "\".";
|
||||
this->Makefile->IssueMessage(messageType, e.str());
|
||||
if (messageType == cmake::FATAL_ERROR) {
|
||||
if (messageType == MessageType::FATAL_ERROR) {
|
||||
return false;
|
||||
}
|
||||
}
|
||||
|
||||
@@ -5,6 +5,7 @@
|
||||
#include "cmDocumentationEntry.h"
|
||||
#include "cmLocalUnixMakefileGenerator3.h"
|
||||
#include "cmMakefile.h"
|
||||
#include "cmMessageType.h"
|
||||
#include "cmState.h"
|
||||
#include "cmake.h"
|
||||
|
||||
|
||||
@@ -32,6 +32,7 @@
|
||||
#include "cmLocalGenerator.h"
|
||||
#include "cmMSVC60LinkLineComputer.h"
|
||||
#include "cmMakefile.h"
|
||||
#include "cmMessageType.h"
|
||||
#include "cmOutputConverter.h"
|
||||
#include "cmPolicies.h"
|
||||
#include "cmSourceFile.h"
|
||||
@@ -137,7 +138,7 @@ bool cmGlobalGenerator::SetGeneratorInstance(std::string const& i,
|
||||
" " << i << "\n"
|
||||
"was specified.";
|
||||
/* clang-format on */
|
||||
mf->IssueMessage(cmake::FATAL_ERROR, e.str());
|
||||
mf->IssueMessage(MessageType::FATAL_ERROR, e.str());
|
||||
return false;
|
||||
}
|
||||
|
||||
@@ -157,7 +158,7 @@ bool cmGlobalGenerator::SetGeneratorPlatform(std::string const& p,
|
||||
" " << p << "\n"
|
||||
"was specified.";
|
||||
/* clang-format on */
|
||||
mf->IssueMessage(cmake::FATAL_ERROR, e.str());
|
||||
mf->IssueMessage(MessageType::FATAL_ERROR, e.str());
|
||||
return false;
|
||||
}
|
||||
|
||||
@@ -176,7 +177,7 @@ bool cmGlobalGenerator::SetGeneratorToolset(std::string const& ts,
|
||||
" " << ts << "\n"
|
||||
"was specified.";
|
||||
/* clang-format on */
|
||||
mf->IssueMessage(cmake::FATAL_ERROR, e.str());
|
||||
mf->IssueMessage(MessageType::FATAL_ERROR, e.str());
|
||||
return false;
|
||||
}
|
||||
|
||||
@@ -319,8 +320,8 @@ bool cmGlobalGenerator::CheckTargetsForMissingSources() const
|
||||
if (srcs.empty()) {
|
||||
std::ostringstream e;
|
||||
e << "No SOURCES given to target: " << target->GetName();
|
||||
this->GetCMakeInstance()->IssueMessage(cmake::FATAL_ERROR, e.str(),
|
||||
target->GetBacktrace());
|
||||
this->GetCMakeInstance()->IssueMessage(
|
||||
MessageType::FATAL_ERROR, e.str(), target->GetBacktrace());
|
||||
failed = true;
|
||||
}
|
||||
}
|
||||
@@ -454,7 +455,7 @@ void cmGlobalGenerator::EnableLanguage(
|
||||
e << "Language '" << li
|
||||
<< "' is currently being enabled. "
|
||||
"Recursive call not allowed.";
|
||||
mf->IssueMessage(cmake::FATAL_ERROR, e.str());
|
||||
mf->IssueMessage(MessageType::FATAL_ERROR, e.str());
|
||||
cmSystemTools::SetFatalErrorOccured();
|
||||
return;
|
||||
}
|
||||
@@ -471,7 +472,7 @@ void cmGlobalGenerator::EnableLanguage(
|
||||
std::ostringstream e;
|
||||
e << "The test project needs language " << lang
|
||||
<< " which is not enabled.";
|
||||
this->TryCompileOuterMakefile->IssueMessage(cmake::FATAL_ERROR,
|
||||
this->TryCompileOuterMakefile->IssueMessage(MessageType::FATAL_ERROR,
|
||||
e.str());
|
||||
cmSystemTools::SetFatalErrorOccured();
|
||||
return;
|
||||
@@ -775,7 +776,7 @@ void cmGlobalGenerator::EnableLanguage(
|
||||
if (!this->CMakeInstance->GetIsInTryCompile()) {
|
||||
this->PrintCompilerAdvice(noCompiler, lang,
|
||||
mf->GetDefinition(compilerEnv));
|
||||
mf->IssueMessage(cmake::FATAL_ERROR, noCompiler.str());
|
||||
mf->IssueMessage(MessageType::FATAL_ERROR, noCompiler.str());
|
||||
fatalError = true;
|
||||
}
|
||||
}
|
||||
@@ -903,7 +904,7 @@ void cmGlobalGenerator::CheckCompilerIdCompatibility(
|
||||
" compiler id \"AppleClang\" to \"Clang\" for compatibility."
|
||||
;
|
||||
/* clang-format on */
|
||||
mf->IssueMessage(cmake::AUTHOR_WARNING, w.str());
|
||||
mf->IssueMessage(MessageType::AUTHOR_WARNING, w.str());
|
||||
}
|
||||
CM_FALLTHROUGH;
|
||||
case cmPolicies::OLD:
|
||||
@@ -913,7 +914,7 @@ void cmGlobalGenerator::CheckCompilerIdCompatibility(
|
||||
case cmPolicies::REQUIRED_IF_USED:
|
||||
case cmPolicies::REQUIRED_ALWAYS:
|
||||
mf->IssueMessage(
|
||||
cmake::FATAL_ERROR,
|
||||
MessageType::FATAL_ERROR,
|
||||
cmPolicies::GetRequiredPolicyError(cmPolicies::CMP0025));
|
||||
case cmPolicies::NEW:
|
||||
// NEW behavior is to keep AppleClang.
|
||||
@@ -933,7 +934,7 @@ void cmGlobalGenerator::CheckCompilerIdCompatibility(
|
||||
" compiler id \"QCC\" to \"GNU\" for compatibility."
|
||||
;
|
||||
/* clang-format on */
|
||||
mf->IssueMessage(cmake::AUTHOR_WARNING, w.str());
|
||||
mf->IssueMessage(MessageType::AUTHOR_WARNING, w.str());
|
||||
}
|
||||
CM_FALLTHROUGH;
|
||||
case cmPolicies::OLD:
|
||||
@@ -948,7 +949,7 @@ void cmGlobalGenerator::CheckCompilerIdCompatibility(
|
||||
case cmPolicies::REQUIRED_IF_USED:
|
||||
case cmPolicies::REQUIRED_ALWAYS:
|
||||
mf->IssueMessage(
|
||||
cmake::FATAL_ERROR,
|
||||
MessageType::FATAL_ERROR,
|
||||
cmPolicies::GetRequiredPolicyError(cmPolicies::CMP0047));
|
||||
CM_FALLTHROUGH;
|
||||
case cmPolicies::NEW:
|
||||
@@ -1410,13 +1411,13 @@ void cmGlobalGenerator::Generate()
|
||||
|
||||
if (!this->GenerateCPackPropertiesFile()) {
|
||||
this->GetCMakeInstance()->IssueMessage(
|
||||
cmake::FATAL_ERROR, "Could not write CPack properties file.");
|
||||
MessageType::FATAL_ERROR, "Could not write CPack properties file.");
|
||||
}
|
||||
|
||||
for (auto& buildExpSet : this->BuildExportSets) {
|
||||
if (!buildExpSet.second->GenerateImportFile()) {
|
||||
if (!cmSystemTools::GetErrorOccuredFlag()) {
|
||||
this->GetCMakeInstance()->IssueMessage(cmake::FATAL_ERROR,
|
||||
this->GetCMakeInstance()->IssueMessage(MessageType::FATAL_ERROR,
|
||||
"Could not write export file.");
|
||||
}
|
||||
return;
|
||||
@@ -1439,7 +1440,8 @@ void cmGlobalGenerator::Generate()
|
||||
for (std::string const& t : this->CMP0042WarnTargets) {
|
||||
w << " " << t << "\n";
|
||||
}
|
||||
this->GetCMakeInstance()->IssueMessage(cmake::AUTHOR_WARNING, w.str());
|
||||
this->GetCMakeInstance()->IssueMessage(MessageType::AUTHOR_WARNING,
|
||||
w.str());
|
||||
}
|
||||
|
||||
if (!this->CMP0068WarnTargets.empty()) {
|
||||
@@ -1455,7 +1457,8 @@ void cmGlobalGenerator::Generate()
|
||||
for (std::string const& t : this->CMP0068WarnTargets) {
|
||||
w << " " << t << "\n";
|
||||
}
|
||||
this->GetCMakeInstance()->IssueMessage(cmake::AUTHOR_WARNING, w.str());
|
||||
this->GetCMakeInstance()->IssueMessage(MessageType::AUTHOR_WARNING,
|
||||
w.str());
|
||||
}
|
||||
|
||||
this->CMakeInstance->UpdateProgress("Generating done", -1);
|
||||
@@ -2233,7 +2236,7 @@ bool cmGlobalGenerator::CheckCMP0037(std::string const& targetName,
|
||||
if (!tgt) {
|
||||
return true;
|
||||
}
|
||||
cmake::MessageType messageType = cmake::AUTHOR_WARNING;
|
||||
MessageType messageType = MessageType::AUTHOR_WARNING;
|
||||
std::ostringstream e;
|
||||
bool issueMessage = false;
|
||||
switch (tgt->GetPolicyStatusCMP0037()) {
|
||||
@@ -2247,18 +2250,18 @@ bool cmGlobalGenerator::CheckCMP0037(std::string const& targetName,
|
||||
case cmPolicies::REQUIRED_IF_USED:
|
||||
case cmPolicies::REQUIRED_ALWAYS:
|
||||
issueMessage = true;
|
||||
messageType = cmake::FATAL_ERROR;
|
||||
messageType = MessageType::FATAL_ERROR;
|
||||
break;
|
||||
}
|
||||
if (issueMessage) {
|
||||
e << "The target name \"" << targetName << "\" is reserved " << reason
|
||||
<< ".";
|
||||
if (messageType == cmake::AUTHOR_WARNING) {
|
||||
if (messageType == MessageType::AUTHOR_WARNING) {
|
||||
e << " It may result in undefined behavior.";
|
||||
}
|
||||
this->GetCMakeInstance()->IssueMessage(messageType, e.str(),
|
||||
tgt->GetBacktrace());
|
||||
if (messageType == cmake::FATAL_ERROR) {
|
||||
if (messageType == MessageType::FATAL_ERROR) {
|
||||
return false;
|
||||
}
|
||||
}
|
||||
@@ -2453,7 +2456,7 @@ void cmGlobalGenerator::AddGlobalTarget_Install(
|
||||
bool skipInstallRules = mf->IsOn("CMAKE_SKIP_INSTALL_RULES");
|
||||
if (this->InstallTargetEnabled && skipInstallRules) {
|
||||
this->CMakeInstance->IssueMessage(
|
||||
cmake::WARNING,
|
||||
MessageType::WARNING,
|
||||
"CMAKE_SKIP_INSTALL_RULES was enabled even though "
|
||||
"installation rules have been specified",
|
||||
mf->GetBacktrace());
|
||||
|
||||
@@ -12,6 +12,7 @@
|
||||
#include "cmLocalGhsMultiGenerator.h"
|
||||
#include "cmMakefile.h"
|
||||
#include "cmVersion.h"
|
||||
#include "cmake.h"
|
||||
|
||||
const char* cmGlobalGhsMultiGenerator::FILE_EXTENSION = ".gpj";
|
||||
const char* cmGlobalGhsMultiGenerator::DEFAULT_BUILD_PROGRAM = "gbuild.exe";
|
||||
|
||||
@@ -6,6 +6,7 @@
|
||||
#include "cmLocalUnixMakefileGenerator3.h"
|
||||
#include "cmMakefile.h"
|
||||
#include "cmState.h"
|
||||
#include "cmake.h"
|
||||
|
||||
cmGlobalJOMMakefileGenerator::cmGlobalJOMMakefileGenerator(cmake* cm)
|
||||
: cmGlobalUnixMakefileGenerator3(cm)
|
||||
|
||||
@@ -7,6 +7,7 @@
|
||||
#include "cmDocumentationEntry.h"
|
||||
#include "cmLocalUnixMakefileGenerator3.h"
|
||||
#include "cmMakefile.h"
|
||||
#include "cmMessageType.h"
|
||||
#include "cmState.h"
|
||||
#include "cmake.h"
|
||||
|
||||
|
||||
@@ -6,6 +6,7 @@
|
||||
#include "cmLocalUnixMakefileGenerator3.h"
|
||||
#include "cmMakefile.h"
|
||||
#include "cmState.h"
|
||||
#include "cmake.h"
|
||||
|
||||
cmGlobalMinGWMakefileGenerator::cmGlobalMinGWMakefileGenerator(cmake* cm)
|
||||
: cmGlobalUnixMakefileGenerator3(cm)
|
||||
|
||||
@@ -6,6 +6,7 @@
|
||||
#include "cmLocalUnixMakefileGenerator3.h"
|
||||
#include "cmMakefile.h"
|
||||
#include "cmState.h"
|
||||
#include "cmake.h"
|
||||
|
||||
cmGlobalNMakeMakefileGenerator::cmGlobalNMakeMakefileGenerator(cmake* cm)
|
||||
: cmGlobalUnixMakefileGenerator3(cm)
|
||||
|
||||
@@ -23,6 +23,7 @@
|
||||
#include "cmLocalGenerator.h"
|
||||
#include "cmLocalNinjaGenerator.h"
|
||||
#include "cmMakefile.h"
|
||||
#include "cmMessageType.h"
|
||||
#include "cmNinjaLinkLineComputer.h"
|
||||
#include "cmOutputConverter.h"
|
||||
#include "cmState.h"
|
||||
@@ -502,7 +503,8 @@ void cmGlobalNinjaGenerator::Generate()
|
||||
msg << "The detected version of Ninja (" << this->NinjaVersion;
|
||||
msg << ") is less than the version of Ninja required by CMake (";
|
||||
msg << cmGlobalNinjaGenerator::RequiredNinjaVersion() << ").";
|
||||
this->GetCMakeInstance()->IssueMessage(cmake::FATAL_ERROR, msg.str());
|
||||
this->GetCMakeInstance()->IssueMessage(MessageType::FATAL_ERROR,
|
||||
msg.str());
|
||||
return;
|
||||
}
|
||||
this->OpenBuildFileStream();
|
||||
@@ -554,7 +556,7 @@ bool cmGlobalNinjaGenerator::FindMakeProgram(cmMakefile* mf)
|
||||
if (!cmSystemTools::RunSingleCommand(command, &version, &error, nullptr,
|
||||
nullptr,
|
||||
cmSystemTools::OUTPUT_NONE)) {
|
||||
mf->IssueMessage(cmake::FATAL_ERROR,
|
||||
mf->IssueMessage(MessageType::FATAL_ERROR,
|
||||
"Running\n '" + cmJoin(command, "' '") +
|
||||
"'\n"
|
||||
"failed with:\n " +
|
||||
@@ -634,7 +636,7 @@ bool cmGlobalNinjaGenerator::CheckFortran(cmMakefile* mf) const
|
||||
;
|
||||
/* clang-format on */
|
||||
}
|
||||
mf->IssueMessage(cmake::FATAL_ERROR, e.str());
|
||||
mf->IssueMessage(MessageType::FATAL_ERROR, e.str());
|
||||
cmSystemTools::SetFatalErrorOccured();
|
||||
return false;
|
||||
}
|
||||
@@ -1300,7 +1302,8 @@ void cmGlobalNinjaGenerator::WriteUnknownExplicitDependencies(std::ostream& os)
|
||||
"options to the custom commands that produce these files."
|
||||
;
|
||||
/* clang-format on */
|
||||
this->GetCMakeInstance()->IssueMessage(cmake::AUTHOR_WARNING, w.str());
|
||||
this->GetCMakeInstance()->IssueMessage(MessageType::AUTHOR_WARNING,
|
||||
w.str());
|
||||
}
|
||||
}
|
||||
|
||||
@@ -1428,7 +1431,8 @@ void cmGlobalNinjaGenerator::WriteTargetRebuildManifest(std::ostream& os)
|
||||
<< "\n";
|
||||
msg << "Any pre-check scripts, such as those generated for file(GLOB "
|
||||
"CONFIGURE_DEPENDS), will not be run by Ninja.";
|
||||
this->GetCMakeInstance()->IssueMessage(cmake::AUTHOR_WARNING, msg.str());
|
||||
this->GetCMakeInstance()->IssueMessage(MessageType::AUTHOR_WARNING,
|
||||
msg.str());
|
||||
}
|
||||
|
||||
std::sort(implicitDeps.begin(), implicitDeps.end());
|
||||
|
||||
@@ -7,6 +7,7 @@
|
||||
#include "cmGeneratorTarget.h"
|
||||
#include "cmLocalVisualStudio10Generator.h"
|
||||
#include "cmMakefile.h"
|
||||
#include "cmMessageType.h"
|
||||
#include "cmSourceFile.h"
|
||||
#include "cmVersion.h"
|
||||
#include "cmVisualStudioSlnData.h"
|
||||
@@ -179,7 +180,7 @@ bool cmGlobalVisualStudio10Generator::SetGeneratorToolset(
|
||||
std::ostringstream e;
|
||||
e << this->GetName() << " Windows CE version '" << this->SystemVersion
|
||||
<< "' requires CMAKE_GENERATOR_TOOLSET to be set.";
|
||||
mf->IssueMessage(cmake::FATAL_ERROR, e.str());
|
||||
mf->IssueMessage(MessageType::FATAL_ERROR, e.str());
|
||||
return false;
|
||||
}
|
||||
|
||||
@@ -252,7 +253,7 @@ bool cmGlobalVisualStudio10Generator::SetGeneratorToolset(
|
||||
"contains an invalid version specification."
|
||||
;
|
||||
/* clang-format on */
|
||||
mf->IssueMessage(cmake::FATAL_ERROR, e.str());
|
||||
mf->IssueMessage(MessageType::FATAL_ERROR, e.str());
|
||||
|
||||
// Clear the configured tool-set
|
||||
this->GeneratorToolsetVersion.clear();
|
||||
@@ -279,7 +280,7 @@ bool cmGlobalVisualStudio10Generator::SetGeneratorToolset(
|
||||
" " << toolsetPath;
|
||||
;
|
||||
/* clang-format on */
|
||||
mf->IssueMessage(cmake::FATAL_ERROR, e.str());
|
||||
mf->IssueMessage(MessageType::FATAL_ERROR, e.str());
|
||||
|
||||
// Clear the configured tool-set
|
||||
this->GeneratorToolsetVersion.clear();
|
||||
@@ -333,7 +334,7 @@ bool cmGlobalVisualStudio10Generator::ParseGeneratorToolset(
|
||||
"that contains a field after the first ',' with no '='."
|
||||
;
|
||||
/* clang-format on */
|
||||
mf->IssueMessage(cmake::FATAL_ERROR, e.str());
|
||||
mf->IssueMessage(MessageType::FATAL_ERROR, e.str());
|
||||
return false;
|
||||
}
|
||||
std::string const key = fi->substr(0, pos);
|
||||
@@ -349,7 +350,7 @@ bool cmGlobalVisualStudio10Generator::ParseGeneratorToolset(
|
||||
"that contains duplicate field key '" << key << "'."
|
||||
;
|
||||
/* clang-format on */
|
||||
mf->IssueMessage(cmake::FATAL_ERROR, e.str());
|
||||
mf->IssueMessage(MessageType::FATAL_ERROR, e.str());
|
||||
return false;
|
||||
}
|
||||
if (!this->ProcessGeneratorToolsetField(key, value)) {
|
||||
@@ -363,7 +364,7 @@ bool cmGlobalVisualStudio10Generator::ParseGeneratorToolset(
|
||||
"that contains invalid field '" << *fi << "'."
|
||||
;
|
||||
/* clang-format on */
|
||||
mf->IssueMessage(cmake::FATAL_ERROR, e.str());
|
||||
mf->IssueMessage(MessageType::FATAL_ERROR, e.str());
|
||||
return false;
|
||||
}
|
||||
}
|
||||
@@ -411,12 +412,12 @@ bool cmGlobalVisualStudio10Generator::InitializeSystem(cmMakefile* mf)
|
||||
std::ostringstream e;
|
||||
e << "CMAKE_SYSTEM_NAME is 'Android' but CMAKE_GENERATOR "
|
||||
<< "specifies a platform too: '" << this->GetName() << "'";
|
||||
mf->IssueMessage(cmake::FATAL_ERROR, e.str());
|
||||
mf->IssueMessage(MessageType::FATAL_ERROR, e.str());
|
||||
return false;
|
||||
}
|
||||
std::string v = this->GetInstalledNsightTegraVersion();
|
||||
if (v.empty()) {
|
||||
mf->IssueMessage(cmake::FATAL_ERROR,
|
||||
mf->IssueMessage(MessageType::FATAL_ERROR,
|
||||
"CMAKE_SYSTEM_NAME is 'Android' but "
|
||||
"'NVIDIA Nsight Tegra Visual Studio Edition' "
|
||||
"is not installed.");
|
||||
@@ -442,7 +443,7 @@ bool cmGlobalVisualStudio10Generator::InitializeWindowsCE(cmMakefile* mf)
|
||||
std::ostringstream e;
|
||||
e << "CMAKE_SYSTEM_NAME is 'WindowsCE' but CMAKE_GENERATOR "
|
||||
<< "specifies a platform too: '" << this->GetName() << "'";
|
||||
mf->IssueMessage(cmake::FATAL_ERROR, e.str());
|
||||
mf->IssueMessage(MessageType::FATAL_ERROR, e.str());
|
||||
return false;
|
||||
}
|
||||
|
||||
@@ -455,7 +456,7 @@ bool cmGlobalVisualStudio10Generator::InitializeWindowsPhone(cmMakefile* mf)
|
||||
{
|
||||
std::ostringstream e;
|
||||
e << this->GetName() << " does not support Windows Phone.";
|
||||
mf->IssueMessage(cmake::FATAL_ERROR, e.str());
|
||||
mf->IssueMessage(MessageType::FATAL_ERROR, e.str());
|
||||
return false;
|
||||
}
|
||||
|
||||
@@ -463,7 +464,7 @@ bool cmGlobalVisualStudio10Generator::InitializeWindowsStore(cmMakefile* mf)
|
||||
{
|
||||
std::ostringstream e;
|
||||
e << this->GetName() << " does not support Windows Store.";
|
||||
mf->IssueMessage(cmake::FATAL_ERROR, e.str());
|
||||
mf->IssueMessage(MessageType::FATAL_ERROR, e.str());
|
||||
return false;
|
||||
}
|
||||
|
||||
@@ -524,7 +525,7 @@ void cmGlobalVisualStudio10Generator::Generate()
|
||||
"To avoid this problem CMake must use a full path for this file "
|
||||
"which then triggers the VS 10 property dialog bug.";
|
||||
/* clang-format on */
|
||||
lg->IssueMessage(cmake::WARNING, e.str().c_str());
|
||||
lg->IssueMessage(MessageType::WARNING, e.str().c_str());
|
||||
}
|
||||
}
|
||||
|
||||
@@ -707,7 +708,7 @@ bool cmGlobalVisualStudio10Generator::FindVCTargetsPath(cmMakefile* mf)
|
||||
// Prepare the work directory.
|
||||
if (!cmSystemTools::MakeDirectory(wd)) {
|
||||
std::string e = "Failed to make directory:\n " + wd;
|
||||
mf->IssueMessage(cmake::FATAL_ERROR, e.c_str());
|
||||
mf->IssueMessage(MessageType::FATAL_ERROR, e.c_str());
|
||||
cmSystemTools::SetFatalErrorOccured();
|
||||
return false;
|
||||
}
|
||||
@@ -829,7 +830,7 @@ bool cmGlobalVisualStudio10Generator::FindVCTargetsPath(cmMakefile* mf)
|
||||
if (ret != 0) {
|
||||
e << "Exit code: " << ret << "\n";
|
||||
}
|
||||
mf->IssueMessage(cmake::FATAL_ERROR, e.str().c_str());
|
||||
mf->IssueMessage(MessageType::FATAL_ERROR, e.str().c_str());
|
||||
cmSystemTools::SetFatalErrorOccured();
|
||||
return false;
|
||||
}
|
||||
@@ -973,7 +974,7 @@ bool cmGlobalVisualStudio10Generator::Find64BitTools(cmMakefile* mf)
|
||||
<< "Install the Microsoft Windows SDK v7.1 to get 64-bit tools:\n"
|
||||
<< " http://msdn.microsoft.com/en-us/windows/bb980924.aspx";
|
||||
/* clang-format on */
|
||||
mf->IssueMessage(cmake::FATAL_ERROR, e.str().c_str());
|
||||
mf->IssueMessage(MessageType::FATAL_ERROR, e.str().c_str());
|
||||
cmSystemTools::SetFatalErrorOccured();
|
||||
return false;
|
||||
}
|
||||
@@ -1154,7 +1155,7 @@ cmIDEFlagTable const* cmGlobalVisualStudio10Generator::LoadFlagTable(
|
||||
e << "JSON flag table \"" << filename <<
|
||||
"\" could not be loaded.\n";
|
||||
/* clang-format on */
|
||||
mf->IssueMessage(cmake::FATAL_ERROR, e.str().c_str());
|
||||
mf->IssueMessage(MessageType::FATAL_ERROR, e.str().c_str());
|
||||
}
|
||||
return ret;
|
||||
}
|
||||
|
||||
@@ -133,7 +133,7 @@ bool cmGlobalVisualStudio11Generator::InitializeWindowsPhone(cmMakefile* mf)
|
||||
<< "Desktop SDK as well as the Windows Phone '" << this->SystemVersion
|
||||
<< "' SDK. Please make sure that you have both installed";
|
||||
}
|
||||
mf->IssueMessage(cmake::FATAL_ERROR, e.str());
|
||||
mf->IssueMessage(MessageType::FATAL_ERROR, e.str());
|
||||
return false;
|
||||
}
|
||||
return true;
|
||||
@@ -151,7 +151,7 @@ bool cmGlobalVisualStudio11Generator::InitializeWindowsStore(cmMakefile* mf)
|
||||
<< "Desktop SDK as well as the Windows Store '" << this->SystemVersion
|
||||
<< "' SDK. Please make sure that you have both installed";
|
||||
}
|
||||
mf->IssueMessage(cmake::FATAL_ERROR, e.str());
|
||||
mf->IssueMessage(MessageType::FATAL_ERROR, e.str());
|
||||
return false;
|
||||
}
|
||||
return true;
|
||||
|
||||
@@ -129,7 +129,7 @@ bool cmGlobalVisualStudio12Generator::InitializeWindowsPhone(cmMakefile* mf)
|
||||
<< "Desktop SDK as well as the Windows Phone '" << this->SystemVersion
|
||||
<< "' SDK. Please make sure that you have both installed";
|
||||
}
|
||||
mf->IssueMessage(cmake::FATAL_ERROR, e.str());
|
||||
mf->IssueMessage(MessageType::FATAL_ERROR, e.str());
|
||||
return false;
|
||||
}
|
||||
return true;
|
||||
@@ -149,7 +149,7 @@ bool cmGlobalVisualStudio12Generator::InitializeWindowsStore(cmMakefile* mf)
|
||||
<< "Desktop SDK as well as the Windows Store '" << this->SystemVersion
|
||||
<< "' SDK. Please make sure that you have both installed";
|
||||
}
|
||||
mf->IssueMessage(cmake::FATAL_ERROR, e.str());
|
||||
mf->IssueMessage(MessageType::FATAL_ERROR, e.str());
|
||||
return false;
|
||||
}
|
||||
return true;
|
||||
|
||||
@@ -126,7 +126,7 @@ bool cmGlobalVisualStudio14Generator::InitializeWindowsStore(cmMakefile* mf)
|
||||
<< "Desktop SDK as well as the Windows Store '" << this->SystemVersion
|
||||
<< "' SDK. Please make sure that you have both installed";
|
||||
}
|
||||
mf->IssueMessage(cmake::FATAL_ERROR, e.str());
|
||||
mf->IssueMessage(MessageType::FATAL_ERROR, e.str());
|
||||
return false;
|
||||
}
|
||||
if (cmHasLiteralPrefix(this->SystemVersion, "10.0")) {
|
||||
@@ -144,7 +144,7 @@ bool cmGlobalVisualStudio14Generator::SelectWindows10SDK(cmMakefile* mf,
|
||||
std::ostringstream e;
|
||||
e << "Could not find an appropriate version of the Windows 10 SDK"
|
||||
<< " installed on this machine";
|
||||
mf->IssueMessage(cmake::FATAL_ERROR, e.str());
|
||||
mf->IssueMessage(MessageType::FATAL_ERROR, e.str());
|
||||
return false;
|
||||
}
|
||||
if (!cmSystemTools::VersionCompareEqual(this->WindowsTargetPlatformVersion,
|
||||
|
||||
@@ -6,7 +6,7 @@
|
||||
#include "cmGeneratorTarget.h"
|
||||
#include "cmLocalVisualStudio7Generator.h"
|
||||
#include "cmMakefile.h"
|
||||
#include "cmake.h"
|
||||
#include "cmMessageType.h"
|
||||
|
||||
cmGlobalVisualStudio71Generator::cmGlobalVisualStudio71Generator(
|
||||
cmake* cm, const std::string& platformName)
|
||||
|
||||
@@ -6,6 +6,7 @@
|
||||
#include "cmGeneratorTarget.h"
|
||||
#include "cmLocalVisualStudio7Generator.h"
|
||||
#include "cmMakefile.h"
|
||||
#include "cmMessageType.h"
|
||||
#include "cmState.h"
|
||||
#include "cmUuid.h"
|
||||
#include "cmake.h"
|
||||
|
||||
@@ -7,6 +7,7 @@
|
||||
#include "cmGeneratorTarget.h"
|
||||
#include "cmLocalVisualStudio7Generator.h"
|
||||
#include "cmMakefile.h"
|
||||
#include "cmMessageType.h"
|
||||
#include "cmSourceFile.h"
|
||||
#include "cmVisualStudioWCEPlatformParser.h"
|
||||
#include "cmake.h"
|
||||
|
||||
@@ -5,8 +5,8 @@
|
||||
#include "cmDocumentationEntry.h"
|
||||
#include "cmLocalVisualStudio7Generator.h"
|
||||
#include "cmMakefile.h"
|
||||
#include "cmMessageType.h"
|
||||
#include "cmVisualStudioWCEPlatformParser.h"
|
||||
#include "cmake.h"
|
||||
|
||||
static const char vs9generatorName[] = "Visual Studio 9 2008";
|
||||
|
||||
|
||||
@@ -19,6 +19,7 @@
|
||||
#include "cmSourceFile.h"
|
||||
#include "cmState.h"
|
||||
#include "cmTarget.h"
|
||||
#include "cmake.h"
|
||||
|
||||
cmGlobalVisualStudioGenerator::cmGlobalVisualStudioGenerator(
|
||||
cmake* cm, std::string const& platformInGeneratorName)
|
||||
@@ -523,7 +524,7 @@ std::string cmGlobalVisualStudioGenerator::GetStartupProjectName(
|
||||
return startup;
|
||||
} else {
|
||||
root->GetMakefile()->IssueMessage(
|
||||
cmake::AUTHOR_WARNING,
|
||||
MessageType::AUTHOR_WARNING,
|
||||
"Directory property VS_STARTUP_PROJECT specifies target "
|
||||
"'" +
|
||||
startup + "' that does not exist. Ignoring.");
|
||||
|
||||
@@ -7,6 +7,7 @@
|
||||
#include "cmLocalVisualStudio10Generator.h"
|
||||
#include "cmMakefile.h"
|
||||
#include "cmVSSetupHelper.h"
|
||||
#include "cmake.h"
|
||||
|
||||
#if defined(_M_ARM64)
|
||||
# define HOST_PLATFORM_NAME "ARM64";
|
||||
@@ -256,7 +257,7 @@ bool cmGlobalVisualStudioVersionedGenerator::SetGeneratorInstance(
|
||||
"could not find specified instance of Visual Studio:\n"
|
||||
" " << i;
|
||||
/* clang-format on */
|
||||
mf->IssueMessage(cmake::FATAL_ERROR, e.str());
|
||||
mf->IssueMessage(MessageType::FATAL_ERROR, e.str());
|
||||
return false;
|
||||
}
|
||||
}
|
||||
@@ -270,7 +271,7 @@ bool cmGlobalVisualStudioVersionedGenerator::SetGeneratorInstance(
|
||||
" " << this->GetName() << "\n"
|
||||
"could not find any instance of Visual Studio.\n";
|
||||
/* clang-format on */
|
||||
mf->IssueMessage(cmake::FATAL_ERROR, e.str());
|
||||
mf->IssueMessage(MessageType::FATAL_ERROR, e.str());
|
||||
return false;
|
||||
}
|
||||
|
||||
|
||||
@@ -21,6 +21,7 @@
|
||||
#include "cmLocalGenerator.h"
|
||||
#include "cmLocalXCodeGenerator.h"
|
||||
#include "cmMakefile.h"
|
||||
#include "cmMessageType.h"
|
||||
#include "cmOutputConverter.h"
|
||||
#include "cmSourceFile.h"
|
||||
#include "cmSourceGroup.h"
|
||||
@@ -201,7 +202,7 @@ cmGlobalGenerator* cmGlobalXCodeGenerator::Factory::CreateGlobalGenerator(
|
||||
unsigned int version_number = 10 * v[0] + v[1];
|
||||
|
||||
if (version_number < 30) {
|
||||
cm->IssueMessage(cmake::FATAL_ERROR,
|
||||
cm->IssueMessage(MessageType::FATAL_ERROR,
|
||||
"Xcode " + version_string + " not supported.");
|
||||
return nullptr;
|
||||
}
|
||||
@@ -263,7 +264,7 @@ bool cmGlobalXCodeGenerator::SetGeneratorToolset(std::string const& ts,
|
||||
" " << ts << "\n"
|
||||
"that was specified.";
|
||||
/* clang-format on */
|
||||
mf->IssueMessage(cmake::FATAL_ERROR, e.str());
|
||||
mf->IssueMessage(MessageType::FATAL_ERROR, e.str());
|
||||
return false;
|
||||
}
|
||||
this->GeneratorToolset = ts;
|
||||
@@ -774,7 +775,7 @@ public:
|
||||
"specified for source:\n"
|
||||
" " << this->SourceFile->GetFullPath() << "\n";
|
||||
/* clang-format on */
|
||||
this->LocalGenerator->IssueMessage(cmake::FATAL_ERROR, e.str());
|
||||
this->LocalGenerator->IssueMessage(MessageType::FATAL_ERROR, e.str());
|
||||
}
|
||||
|
||||
return processed;
|
||||
|
||||
@@ -6,6 +6,7 @@
|
||||
#include "cmExecutionStatus.h"
|
||||
#include "cmExpandedCommandArgument.h"
|
||||
#include "cmMakefile.h"
|
||||
#include "cmMessageType.h"
|
||||
#include "cmOutputConverter.h"
|
||||
#include "cmSystemTools.h"
|
||||
#include "cmake.h"
|
||||
@@ -60,7 +61,7 @@ bool cmIfFunctionBlocker::IsFunctionBlocked(const cmListFileFunction& lff,
|
||||
if (this->ElseSeen) {
|
||||
cmListFileBacktrace bt = mf.GetBacktrace(func);
|
||||
mf.GetCMakeInstance()->IssueMessage(
|
||||
cmake::FATAL_ERROR,
|
||||
MessageType::FATAL_ERROR,
|
||||
"A duplicate ELSE command was found inside an IF block.", bt);
|
||||
cmSystemTools::SetFatalErrorOccured();
|
||||
return true;
|
||||
@@ -79,7 +80,7 @@ bool cmIfFunctionBlocker::IsFunctionBlocked(const cmListFileFunction& lff,
|
||||
if (this->ElseSeen) {
|
||||
cmListFileBacktrace bt = mf.GetBacktrace(func);
|
||||
mf.GetCMakeInstance()->IssueMessage(
|
||||
cmake::FATAL_ERROR,
|
||||
MessageType::FATAL_ERROR,
|
||||
"An ELSEIF command was found after an ELSE command.", bt);
|
||||
cmSystemTools::SetFatalErrorOccured();
|
||||
return true;
|
||||
@@ -98,7 +99,7 @@ bool cmIfFunctionBlocker::IsFunctionBlocked(const cmListFileFunction& lff,
|
||||
std::vector<cmExpandedCommandArgument> expandedArguments;
|
||||
mf.ExpandArguments(func.Arguments, expandedArguments);
|
||||
|
||||
cmake::MessageType messType;
|
||||
MessageType messType;
|
||||
|
||||
cmListFileContext conditionContext =
|
||||
cmListFileContext::FromCommandContext(
|
||||
@@ -115,7 +116,7 @@ bool cmIfFunctionBlocker::IsFunctionBlocked(const cmListFileFunction& lff,
|
||||
err += errorString;
|
||||
cmListFileBacktrace bt = mf.GetBacktrace(func);
|
||||
mf.GetCMakeInstance()->IssueMessage(messType, err, bt);
|
||||
if (messType == cmake::FATAL_ERROR) {
|
||||
if (messType == MessageType::FATAL_ERROR) {
|
||||
cmSystemTools::SetFatalErrorOccured();
|
||||
return true;
|
||||
}
|
||||
@@ -181,7 +182,7 @@ bool cmIfCommand::InvokeInitialPass(
|
||||
std::vector<cmExpandedCommandArgument> expandedArguments;
|
||||
this->Makefile->ExpandArguments(args, expandedArguments);
|
||||
|
||||
cmake::MessageType status;
|
||||
MessageType status;
|
||||
|
||||
cmConditionEvaluator conditionEvaluator(
|
||||
*(this->Makefile), this->Makefile->GetExecutionContext(),
|
||||
@@ -193,8 +194,8 @@ bool cmIfCommand::InvokeInitialPass(
|
||||
if (!errorString.empty()) {
|
||||
std::string err = "if " + cmIfCommandError(expandedArguments);
|
||||
err += errorString;
|
||||
if (status == cmake::FATAL_ERROR) {
|
||||
this->Makefile->IssueMessage(cmake::FATAL_ERROR, err);
|
||||
if (status == MessageType::FATAL_ERROR) {
|
||||
this->Makefile->IssueMessage(MessageType::FATAL_ERROR, err);
|
||||
cmSystemTools::SetFatalErrorOccured();
|
||||
return true;
|
||||
}
|
||||
|
||||
@@ -6,9 +6,9 @@
|
||||
|
||||
#include "cmGlobalGenerator.h"
|
||||
#include "cmMakefile.h"
|
||||
#include "cmMessageType.h"
|
||||
#include "cmPolicies.h"
|
||||
#include "cmSystemTools.h"
|
||||
#include "cmake.h"
|
||||
|
||||
class cmExecutionStatus;
|
||||
|
||||
@@ -58,7 +58,7 @@ bool cmIncludeCommand::InitialPass(std::vector<std::string> const& args,
|
||||
}
|
||||
|
||||
if (fname.empty()) {
|
||||
this->Makefile->IssueMessage(cmake::AUTHOR_WARNING,
|
||||
this->Makefile->IssueMessage(MessageType::AUTHOR_WARNING,
|
||||
"include() given empty file name (ignored).");
|
||||
return true;
|
||||
}
|
||||
@@ -80,7 +80,7 @@ bool cmIncludeCommand::InitialPass(std::vector<std::string> const& args,
|
||||
if (gg->IsExportedTargetsFile(fname_abs)) {
|
||||
const char* modal = nullptr;
|
||||
std::ostringstream e;
|
||||
cmake::MessageType messageType = cmake::AUTHOR_WARNING;
|
||||
MessageType messageType = MessageType::AUTHOR_WARNING;
|
||||
|
||||
switch (this->Makefile->GetPolicyStatus(cmPolicies::CMP0024)) {
|
||||
case cmPolicies::WARN:
|
||||
@@ -92,7 +92,7 @@ bool cmIncludeCommand::InitialPass(std::vector<std::string> const& args,
|
||||
case cmPolicies::REQUIRED_ALWAYS:
|
||||
case cmPolicies::NEW:
|
||||
modal = "may";
|
||||
messageType = cmake::FATAL_ERROR;
|
||||
messageType = MessageType::FATAL_ERROR;
|
||||
}
|
||||
if (modal) {
|
||||
e << "The file\n " << fname_abs
|
||||
@@ -103,7 +103,7 @@ bool cmIncludeCommand::InitialPass(std::vector<std::string> const& args,
|
||||
"include() command. Use ALIAS targets instead to refer to targets "
|
||||
"by alternative names.\n";
|
||||
this->Makefile->IssueMessage(messageType, e.str());
|
||||
if (messageType == cmake::FATAL_ERROR) {
|
||||
if (messageType == MessageType::FATAL_ERROR) {
|
||||
return false;
|
||||
}
|
||||
}
|
||||
|
||||
@@ -8,6 +8,7 @@
|
||||
# include "cmStateTypes.h"
|
||||
# include "cmSystemTools.h"
|
||||
# include "cmTarget.h"
|
||||
# include "cmake.h"
|
||||
#endif
|
||||
|
||||
class cmExecutionStatus;
|
||||
|
||||
@@ -23,12 +23,12 @@
|
||||
#include "cmInstallTargetGenerator.h"
|
||||
#include "cmListFileCache.h"
|
||||
#include "cmMakefile.h"
|
||||
#include "cmMessageType.h"
|
||||
#include "cmPolicies.h"
|
||||
#include "cmStateTypes.h"
|
||||
#include "cmSystemTools.h"
|
||||
#include "cmTarget.h"
|
||||
#include "cmTargetExport.h"
|
||||
#include "cmake.h"
|
||||
|
||||
class cmExecutionStatus;
|
||||
|
||||
@@ -864,7 +864,7 @@ bool cmInstallCommand::HandleFilesMode(std::vector<std::string> const& args)
|
||||
if (gg->IsExportedTargetsFile(file)) {
|
||||
const char* modal = nullptr;
|
||||
std::ostringstream e;
|
||||
cmake::MessageType messageType = cmake::AUTHOR_WARNING;
|
||||
MessageType messageType = MessageType::AUTHOR_WARNING;
|
||||
|
||||
switch (status) {
|
||||
case cmPolicies::WARN:
|
||||
@@ -876,7 +876,7 @@ bool cmInstallCommand::HandleFilesMode(std::vector<std::string> const& args)
|
||||
case cmPolicies::REQUIRED_ALWAYS:
|
||||
case cmPolicies::NEW:
|
||||
modal = "may";
|
||||
messageType = cmake::FATAL_ERROR;
|
||||
messageType = MessageType::FATAL_ERROR;
|
||||
}
|
||||
if (modal) {
|
||||
e << "The file\n " << file
|
||||
@@ -887,7 +887,7 @@ bool cmInstallCommand::HandleFilesMode(std::vector<std::string> const& args)
|
||||
"install() command. Use the install(EXPORT) mechanism "
|
||||
"instead. See the cmake-packages(7) manual for more.\n";
|
||||
this->Makefile->IssueMessage(messageType, e.str());
|
||||
if (messageType == cmake::FATAL_ERROR) {
|
||||
if (messageType == MessageType::FATAL_ERROR) {
|
||||
return false;
|
||||
}
|
||||
}
|
||||
@@ -1495,7 +1495,7 @@ bool cmInstallCommand::CheckCMP0006(bool& failure)
|
||||
switch (this->Makefile->GetPolicyStatus(cmPolicies::CMP0006)) {
|
||||
case cmPolicies::WARN:
|
||||
this->Makefile->IssueMessage(
|
||||
cmake::AUTHOR_WARNING,
|
||||
MessageType::AUTHOR_WARNING,
|
||||
cmPolicies::GetPolicyWarning(cmPolicies::CMP0006));
|
||||
CM_FALLTHROUGH;
|
||||
case cmPolicies::OLD:
|
||||
@@ -1508,7 +1508,7 @@ bool cmInstallCommand::CheckCMP0006(bool& failure)
|
||||
case cmPolicies::REQUIRED_ALWAYS:
|
||||
failure = true;
|
||||
this->Makefile->IssueMessage(
|
||||
cmake::FATAL_ERROR,
|
||||
MessageType::FATAL_ERROR,
|
||||
cmPolicies::GetRequiredPolicyError(cmPolicies::CMP0006));
|
||||
break;
|
||||
}
|
||||
|
||||
@@ -13,7 +13,7 @@
|
||||
#include "cmInstallTargetGenerator.h"
|
||||
#include "cmLocalGenerator.h"
|
||||
#include "cmMakefile.h"
|
||||
#include "cmake.h"
|
||||
#include "cmMessageType.h"
|
||||
|
||||
cmInstallExportAndroidMKGenerator::cmInstallExportAndroidMKGenerator(
|
||||
cmExportSet* exportSet, const char* destination,
|
||||
|
||||
@@ -7,9 +7,9 @@
|
||||
|
||||
#include "cmGeneratorExpression.h"
|
||||
#include "cmLocalGenerator.h"
|
||||
#include "cmMessageType.h"
|
||||
#include "cmPolicies.h"
|
||||
#include "cmScriptGenerator.h"
|
||||
#include "cmake.h"
|
||||
|
||||
cmInstallScriptGenerator::cmInstallScriptGenerator(const char* script,
|
||||
bool code,
|
||||
@@ -39,7 +39,7 @@ void cmInstallScriptGenerator::Compute(cmLocalGenerator* lg)
|
||||
switch (this->LocalGenerator->GetPolicyStatus(cmPolicies::CMP0087)) {
|
||||
case cmPolicies::WARN:
|
||||
this->LocalGenerator->IssueMessage(
|
||||
cmake::AUTHOR_WARNING,
|
||||
MessageType::AUTHOR_WARNING,
|
||||
cmPolicies::GetPolicyWarning(cmPolicies::CMP0087));
|
||||
CM_FALLTHROUGH;
|
||||
case cmPolicies::OLD:
|
||||
|
||||
@@ -15,6 +15,7 @@
|
||||
#include "cmInstallType.h"
|
||||
#include "cmLocalGenerator.h"
|
||||
#include "cmMakefile.h"
|
||||
#include "cmMessageType.h"
|
||||
#include "cmStateTypes.h"
|
||||
#include "cmSystemTools.h"
|
||||
#include "cmTarget.h"
|
||||
@@ -91,7 +92,7 @@ void cmInstallTargetGenerator::GenerateScriptForConfig(
|
||||
case cmStateEnums::GLOBAL_TARGET:
|
||||
case cmStateEnums::UNKNOWN_LIBRARY:
|
||||
this->Target->GetLocalGenerator()->IssueMessage(
|
||||
cmake::INTERNAL_ERROR,
|
||||
MessageType::INTERNAL_ERROR,
|
||||
"cmInstallTargetGenerator created with non-installable target.");
|
||||
return;
|
||||
}
|
||||
@@ -695,7 +696,7 @@ void cmInstallTargetGenerator::AddChrpathPatchRule(
|
||||
<< "Therefore, runtime paths will not be changed when installing. "
|
||||
<< "CMAKE_BUILD_WITH_INSTALL_RPATH may be used to work around"
|
||||
" this limitation.";
|
||||
mf->IssueMessage(cmake::WARNING, msg.str());
|
||||
mf->IssueMessage(MessageType::WARNING, msg.str());
|
||||
} else {
|
||||
// Note: These paths are kept unique to avoid
|
||||
// install_name_tool corruption.
|
||||
|
||||
@@ -7,9 +7,9 @@
|
||||
#include "cmAlgorithms.h"
|
||||
#include "cmGeneratorExpression.h"
|
||||
#include "cmMakefile.h"
|
||||
#include "cmMessageType.h"
|
||||
#include "cmPolicies.h"
|
||||
#include "cmSystemTools.h"
|
||||
#include "cmake.h"
|
||||
|
||||
class cmExecutionStatus;
|
||||
|
||||
@@ -59,7 +59,7 @@ void cmLinkDirectoriesCommand::AddLinkDir(
|
||||
switch (this->Makefile->GetPolicyStatus(cmPolicies::CMP0015)) {
|
||||
case cmPolicies::WARN:
|
||||
e << cmPolicies::GetPolicyWarning(cmPolicies::CMP0015);
|
||||
this->Makefile->IssueMessage(cmake::AUTHOR_WARNING, e.str());
|
||||
this->Makefile->IssueMessage(MessageType::AUTHOR_WARNING, e.str());
|
||||
break;
|
||||
case cmPolicies::OLD:
|
||||
// OLD behavior does not convert
|
||||
@@ -67,7 +67,7 @@ void cmLinkDirectoriesCommand::AddLinkDir(
|
||||
case cmPolicies::REQUIRED_IF_USED:
|
||||
case cmPolicies::REQUIRED_ALWAYS:
|
||||
e << cmPolicies::GetRequiredPolicyError(cmPolicies::CMP0015);
|
||||
this->Makefile->IssueMessage(cmake::FATAL_ERROR, e.str());
|
||||
this->Makefile->IssueMessage(MessageType::FATAL_ERROR, e.str());
|
||||
CM_FALLTHROUGH;
|
||||
case cmPolicies::NEW:
|
||||
// NEW behavior converts
|
||||
|
||||
@@ -17,10 +17,10 @@
|
||||
#include "cmAlgorithms.h"
|
||||
#include "cmGeneratorExpression.h"
|
||||
#include "cmMakefile.h"
|
||||
#include "cmMessageType.h"
|
||||
#include "cmPolicies.h"
|
||||
#include "cmStringReplaceHelper.h"
|
||||
#include "cmSystemTools.h"
|
||||
#include "cmake.h"
|
||||
|
||||
class cmExecutionStatus;
|
||||
|
||||
@@ -123,7 +123,7 @@ bool cmListCommand::GetList(std::vector<std::string>& list,
|
||||
warn += " List has value = [";
|
||||
warn += listString;
|
||||
warn += "].";
|
||||
this->Makefile->IssueMessage(cmake::AUTHOR_WARNING, warn);
|
||||
this->Makefile->IssueMessage(MessageType::AUTHOR_WARNING, warn);
|
||||
return true;
|
||||
}
|
||||
case cmPolicies::OLD:
|
||||
@@ -138,7 +138,7 @@ bool cmListCommand::GetList(std::vector<std::string>& list,
|
||||
case cmPolicies::REQUIRED_IF_USED:
|
||||
case cmPolicies::REQUIRED_ALWAYS:
|
||||
this->Makefile->IssueMessage(
|
||||
cmake::FATAL_ERROR,
|
||||
MessageType::FATAL_ERROR,
|
||||
cmPolicies::GetRequiredPolicyError(cmPolicies::CMP0007));
|
||||
return false;
|
||||
}
|
||||
|
||||
@@ -3,11 +3,11 @@
|
||||
#include "cmListFileCache.h"
|
||||
|
||||
#include "cmListFileLexer.h"
|
||||
#include "cmMessageType.h"
|
||||
#include "cmMessenger.h"
|
||||
#include "cmOutputConverter.h"
|
||||
#include "cmState.h"
|
||||
#include "cmSystemTools.h"
|
||||
#include "cmake.h"
|
||||
|
||||
#include <assert.h>
|
||||
#include <memory>
|
||||
@@ -66,7 +66,8 @@ cmListFileParser::~cmListFileParser()
|
||||
|
||||
void cmListFileParser::IssueFileOpenError(const std::string& text) const
|
||||
{
|
||||
this->Messenger->IssueMessage(cmake::FATAL_ERROR, text, this->Backtrace);
|
||||
this->Messenger->IssueMessage(MessageType::FATAL_ERROR, text,
|
||||
this->Backtrace);
|
||||
}
|
||||
|
||||
void cmListFileParser::IssueError(const std::string& text) const
|
||||
@@ -76,7 +77,7 @@ void cmListFileParser::IssueError(const std::string& text) const
|
||||
lfc.Line = cmListFileLexer_GetCurrentLine(this->Lexer);
|
||||
cmListFileBacktrace lfbt = this->Backtrace;
|
||||
lfbt = lfbt.Push(lfc);
|
||||
this->Messenger->IssueMessage(cmake::FATAL_ERROR, text, lfbt);
|
||||
this->Messenger->IssueMessage(MessageType::FATAL_ERROR, text, lfbt);
|
||||
cmSystemTools::SetFatalErrorOccured();
|
||||
}
|
||||
|
||||
@@ -254,7 +255,7 @@ bool cmListFileParser::ParseFunction(const char* name, long line)
|
||||
lfbt = lfbt.Push(lfc);
|
||||
error << "Parse error. Function missing ending \")\". "
|
||||
<< "End of file reached.";
|
||||
this->Messenger->IssueMessage(cmake::FATAL_ERROR, error.str(), lfbt);
|
||||
this->Messenger->IssueMessage(MessageType::FATAL_ERROR, error.str(), lfbt);
|
||||
return false;
|
||||
}
|
||||
|
||||
@@ -279,10 +280,10 @@ bool cmListFileParser::AddArgument(cmListFileLexer_Token* token,
|
||||
<< "Argument not separated from preceding token by whitespace.";
|
||||
/* clang-format on */
|
||||
if (isError) {
|
||||
this->Messenger->IssueMessage(cmake::FATAL_ERROR, m.str(), lfbt);
|
||||
this->Messenger->IssueMessage(MessageType::FATAL_ERROR, m.str(), lfbt);
|
||||
return false;
|
||||
}
|
||||
this->Messenger->IssueMessage(cmake::AUTHOR_WARNING, m.str(), lfbt);
|
||||
this->Messenger->IssueMessage(MessageType::AUTHOR_WARNING, m.str(), lfbt);
|
||||
return true;
|
||||
}
|
||||
|
||||
|
||||
+14
-14
@@ -165,7 +165,7 @@ cmLocalGenerator::~cmLocalGenerator()
|
||||
cmDeleteAll(this->OwnedImportedGeneratorTargets);
|
||||
}
|
||||
|
||||
void cmLocalGenerator::IssueMessage(cmake::MessageType t,
|
||||
void cmLocalGenerator::IssueMessage(MessageType t,
|
||||
std::string const& text) const
|
||||
{
|
||||
this->GetCMakeInstance()->IssueMessage(t, text, this->DirectoryBacktrace);
|
||||
@@ -190,14 +190,14 @@ void cmLocalGenerator::ComputeObjectMaxPath()
|
||||
w << "CMAKE_OBJECT_PATH_MAX is set to " << pmax
|
||||
<< ", which is less than the minimum of 128. "
|
||||
<< "The value will be ignored.";
|
||||
this->IssueMessage(cmake::AUTHOR_WARNING, w.str());
|
||||
this->IssueMessage(MessageType::AUTHOR_WARNING, w.str());
|
||||
}
|
||||
} else {
|
||||
std::ostringstream w;
|
||||
w << "CMAKE_OBJECT_PATH_MAX is set to \"" << plen
|
||||
<< "\", which fails to parse as a positive integer. "
|
||||
<< "The value will be ignored.";
|
||||
this->IssueMessage(cmake::AUTHOR_WARNING, w.str());
|
||||
this->IssueMessage(MessageType::AUTHOR_WARNING, w.str());
|
||||
}
|
||||
}
|
||||
this->ObjectMaxPathViolations.clear();
|
||||
@@ -565,7 +565,7 @@ void cmLocalGenerator::GenerateInstallRules()
|
||||
"CMAKE_POLICY_WARNING_CMP0082")) {
|
||||
std::ostringstream e;
|
||||
e << cmPolicies::GetPolicyWarning(cmPolicies::CMP0082) << "\n";
|
||||
this->IssueMessage(cmake::AUTHOR_WARNING, e.str());
|
||||
this->IssueMessage(MessageType::AUTHOR_WARNING, e.str());
|
||||
}
|
||||
CM_FALLTHROUGH;
|
||||
case cmPolicies::OLD: {
|
||||
@@ -874,7 +874,7 @@ void cmLocalGenerator::AddCompileOptions(std::string& flags,
|
||||
"on "
|
||||
"and be depended on by the link implementation."
|
||||
<< std::endl;
|
||||
this->IssueMessage(cmake::FATAL_ERROR, e.str());
|
||||
this->IssueMessage(MessageType::FATAL_ERROR, e.str());
|
||||
return;
|
||||
}
|
||||
}
|
||||
@@ -1387,7 +1387,7 @@ std::string cmLocalGenerator::GetLinkLibsCMP0065(
|
||||
"additional flags may be added to export symbols on all "
|
||||
"executables regardless of their ENABLE_EXPORTS property.";
|
||||
/* clang-format on */
|
||||
this->IssueMessage(cmake::AUTHOR_WARNING, w.str());
|
||||
this->IssueMessage(MessageType::AUTHOR_WARNING, w.str());
|
||||
}
|
||||
CM_FALLTHROUGH;
|
||||
case cmPolicies::OLD:
|
||||
@@ -1397,7 +1397,7 @@ std::string cmLocalGenerator::GetLinkLibsCMP0065(
|
||||
case cmPolicies::REQUIRED_IF_USED:
|
||||
case cmPolicies::REQUIRED_ALWAYS:
|
||||
this->IssueMessage(
|
||||
cmake::FATAL_ERROR,
|
||||
MessageType::FATAL_ERROR,
|
||||
cmPolicies::GetRequiredPolicyError(cmPolicies::CMP0065));
|
||||
CM_FALLTHROUGH;
|
||||
case cmPolicies::NEW:
|
||||
@@ -1670,7 +1670,7 @@ void cmLocalGenerator::AddCompilerRequirementFlag(
|
||||
<< (ext ? "(with compiler extensions)" : "")
|
||||
<< ", but CMake "
|
||||
"does not know the compile flags to use to enable it.";
|
||||
this->IssueMessage(cmake::FATAL_ERROR, e.str());
|
||||
this->IssueMessage(MessageType::FATAL_ERROR, e.str());
|
||||
} else {
|
||||
std::vector<std::string> optVec;
|
||||
cmSystemTools::ExpandListArgument(opt, optVec);
|
||||
@@ -1709,7 +1709,7 @@ void cmLocalGenerator::AddCompilerRequirementFlag(
|
||||
std::string e =
|
||||
lang + "_STANDARD is set to invalid value '" + standard + "'";
|
||||
this->GetGlobalGenerator()->GetCMakeInstance()->IssueMessage(
|
||||
cmake::FATAL_ERROR, e, target->GetBacktrace());
|
||||
MessageType::FATAL_ERROR, e, target->GetBacktrace());
|
||||
return;
|
||||
}
|
||||
|
||||
@@ -1719,7 +1719,7 @@ void cmLocalGenerator::AddCompilerRequirementFlag(
|
||||
std::string e = "CMAKE_" + lang +
|
||||
"_STANDARD_DEFAULT is set to invalid value '" + std::string(defaultStd) +
|
||||
"'";
|
||||
this->IssueMessage(cmake::INTERNAL_ERROR, e);
|
||||
this->IssueMessage(MessageType::INTERNAL_ERROR, e);
|
||||
return;
|
||||
}
|
||||
|
||||
@@ -1857,7 +1857,7 @@ void cmLocalGenerator::AddVisibilityPresetFlags(
|
||||
"For compatibility CMake is not honoring them for this target.";
|
||||
/* clang-format on */
|
||||
target->GetLocalGenerator()->GetCMakeInstance()->IssueMessage(
|
||||
cmake::AUTHOR_WARNING, w.str(), target->GetBacktrace());
|
||||
MessageType::AUTHOR_WARNING, w.str(), target->GetBacktrace());
|
||||
}
|
||||
}
|
||||
|
||||
@@ -1916,7 +1916,7 @@ bool cmLocalGenerator::GetShouldUseOldFlags(bool shared,
|
||||
<< flagsVar << " was removed.\n"
|
||||
<< cmPolicies::GetPolicyWarning(cmPolicies::CMP0018);
|
||||
|
||||
this->IssueMessage(cmake::AUTHOR_WARNING, e.str());
|
||||
this->IssueMessage(MessageType::AUTHOR_WARNING, e.str());
|
||||
CM_FALLTHROUGH;
|
||||
}
|
||||
case cmPolicies::OLD:
|
||||
@@ -2130,7 +2130,7 @@ void cmLocalGenerator::AppendIncludeDirectories(
|
||||
<< sourceFile.GetLocation().GetName() << "\":\n \"" << include
|
||||
<< "\"\n";
|
||||
|
||||
this->IssueMessage(cmake::FATAL_ERROR, e.str());
|
||||
this->IssueMessage(MessageType::FATAL_ERROR, e.str());
|
||||
return;
|
||||
}
|
||||
|
||||
@@ -2500,7 +2500,7 @@ std::string& cmLocalGenerator::CreateSafeUniqueObjectFileName(
|
||||
<< "cannot be safely placed under this directory. "
|
||||
<< "The build may not work correctly.";
|
||||
/* clang-format on */
|
||||
this->IssueMessage(cmake::WARNING, m.str());
|
||||
this->IssueMessage(MessageType::WARNING, m.str());
|
||||
}
|
||||
}
|
||||
#else
|
||||
|
||||
@@ -14,10 +14,10 @@
|
||||
#include <vector>
|
||||
|
||||
#include "cmListFileCache.h"
|
||||
#include "cmMessageType.h"
|
||||
#include "cmOutputConverter.h"
|
||||
#include "cmPolicies.h"
|
||||
#include "cmStateSnapshot.h"
|
||||
#include "cmake.h"
|
||||
|
||||
class cmComputeLinkInformation;
|
||||
class cmCustomCommandGenerator;
|
||||
@@ -28,6 +28,7 @@ class cmMakefile;
|
||||
class cmRulePlaceholderExpander;
|
||||
class cmSourceFile;
|
||||
class cmState;
|
||||
class cmake;
|
||||
|
||||
/** \class cmLocalGenerator
|
||||
* \brief Create required build files for a directory.
|
||||
@@ -359,7 +360,7 @@ public:
|
||||
bool IsMinGWMake() const;
|
||||
bool IsNMake() const;
|
||||
|
||||
void IssueMessage(cmake::MessageType t, std::string const& text) const;
|
||||
void IssueMessage(MessageType t, std::string const& text) const;
|
||||
|
||||
void CreateEvaluationFileOutputs(const std::string& config);
|
||||
void ProcessEvaluationFiles(std::vector<std::string>& generatedFiles);
|
||||
|
||||
@@ -7,6 +7,7 @@
|
||||
#include "cmMakefile.h"
|
||||
#include "cmVisualStudio10TargetGenerator.h"
|
||||
#include "cmXMLParser.h"
|
||||
#include "cmake.h"
|
||||
|
||||
#include "cm_expat.h"
|
||||
|
||||
|
||||
@@ -6,6 +6,7 @@
|
||||
#include "cmGeneratorTarget.h"
|
||||
#include "cmGlobalVisualStudio7Generator.h"
|
||||
#include "cmMakefile.h"
|
||||
#include "cmMessageType.h"
|
||||
#include "cmSourceFile.h"
|
||||
#include "cmSystemTools.h"
|
||||
#include "cmXMLParser.h"
|
||||
|
||||
+80
-79
@@ -30,6 +30,7 @@
|
||||
#include "cmInstallGenerator.h" // IWYU pragma: keep
|
||||
#include "cmInstallSubdirectoryGenerator.h"
|
||||
#include "cmListFileCache.h"
|
||||
#include "cmMessageType.h"
|
||||
#include "cmSourceFile.h"
|
||||
#include "cmSourceFileLocation.h"
|
||||
#include "cmState.h"
|
||||
@@ -129,11 +130,11 @@ cmDirectoryId cmMakefile::GetDirectoryId() const
|
||||
return std::string(buf);
|
||||
}
|
||||
|
||||
void cmMakefile::IssueMessage(cmake::MessageType t,
|
||||
std::string const& text) const
|
||||
void cmMakefile::IssueMessage(MessageType t, std::string const& text) const
|
||||
{
|
||||
if (!this->ExecutionStatusStack.empty()) {
|
||||
if ((t == cmake::FATAL_ERROR) || (t == cmake::INTERNAL_ERROR)) {
|
||||
if ((t == MessageType::FATAL_ERROR) ||
|
||||
(t == MessageType::INTERNAL_ERROR)) {
|
||||
this->ExecutionStatusStack.back()->SetNestedError();
|
||||
}
|
||||
}
|
||||
@@ -143,7 +144,7 @@ void cmMakefile::IssueMessage(cmake::MessageType t,
|
||||
bool cmMakefile::CheckCMP0037(std::string const& targetName,
|
||||
cmStateEnums::TargetType targetType) const
|
||||
{
|
||||
cmake::MessageType messageType = cmake::AUTHOR_WARNING;
|
||||
MessageType messageType = MessageType::AUTHOR_WARNING;
|
||||
std::ostringstream e;
|
||||
bool issueMessage = false;
|
||||
switch (this->GetPolicyStatus(cmPolicies::CMP0037)) {
|
||||
@@ -159,7 +160,7 @@ bool cmMakefile::CheckCMP0037(std::string const& targetName,
|
||||
case cmPolicies::REQUIRED_IF_USED:
|
||||
case cmPolicies::REQUIRED_ALWAYS:
|
||||
issueMessage = true;
|
||||
messageType = cmake::FATAL_ERROR;
|
||||
messageType = MessageType::FATAL_ERROR;
|
||||
break;
|
||||
}
|
||||
if (issueMessage) {
|
||||
@@ -169,7 +170,7 @@ bool cmMakefile::CheckCMP0037(std::string const& targetName,
|
||||
"in undefined behavior.";
|
||||
this->IssueMessage(messageType, e.str());
|
||||
|
||||
if (messageType == cmake::FATAL_ERROR) {
|
||||
if (messageType == MessageType::FATAL_ERROR) {
|
||||
return false;
|
||||
}
|
||||
}
|
||||
@@ -198,7 +199,7 @@ void cmMakefile::MaybeWarnCMP0074(std::string const& pkg)
|
||||
<< " " << env << "\n";
|
||||
}
|
||||
w << "For compatibility, CMake is ignoring the variable.";
|
||||
this->IssueMessage(cmake::AUTHOR_WARNING, w.str());
|
||||
this->IssueMessage(MessageType::AUTHOR_WARNING, w.str());
|
||||
}
|
||||
}
|
||||
|
||||
@@ -381,7 +382,7 @@ bool cmMakefile::ExecuteCommand(const cmListFileFunction& lff,
|
||||
// The command invocation requested that we report an error.
|
||||
std::string const error =
|
||||
std::string(lff.Name.Original) + " " + pcmd->GetError();
|
||||
this->IssueMessage(cmake::FATAL_ERROR, error);
|
||||
this->IssueMessage(MessageType::FATAL_ERROR, error);
|
||||
}
|
||||
result = false;
|
||||
if (this->GetCMakeInstance()->GetWorkingMode() != cmake::NORMAL_MODE) {
|
||||
@@ -397,7 +398,7 @@ bool cmMakefile::ExecuteCommand(const cmListFileFunction& lff,
|
||||
std::string error = "Unknown CMake command \"";
|
||||
error += lff.Name.Original;
|
||||
error += "\".";
|
||||
this->IssueMessage(cmake::FATAL_ERROR, error);
|
||||
this->IssueMessage(MessageType::FATAL_ERROR, error);
|
||||
result = false;
|
||||
cmSystemTools::SetFatalErrorOccured();
|
||||
}
|
||||
@@ -509,7 +510,7 @@ void cmMakefile::IncludeScope::EnforceCMP0011()
|
||||
<< "affects policy settings. "
|
||||
<< "CMake is implying the NO_POLICY_SCOPE option for compatibility, "
|
||||
<< "so the effects are applied to the including context.";
|
||||
this->Makefile->IssueMessage(cmake::AUTHOR_WARNING, w.str());
|
||||
this->Makefile->IssueMessage(MessageType::AUTHOR_WARNING, w.str());
|
||||
}
|
||||
break;
|
||||
case cmPolicies::REQUIRED_IF_USED:
|
||||
@@ -521,7 +522,7 @@ void cmMakefile::IncludeScope::EnforceCMP0011()
|
||||
<< this->Makefile->GetExecutionFilePath() << "\n"
|
||||
<< "affects policy settings, so it requires this policy to be set.";
|
||||
/* clang-format on */
|
||||
this->Makefile->IssueMessage(cmake::FATAL_ERROR, e.str());
|
||||
this->Makefile->IssueMessage(MessageType::FATAL_ERROR, e.str());
|
||||
} break;
|
||||
case cmPolicies::OLD:
|
||||
case cmPolicies::NEW:
|
||||
@@ -665,7 +666,7 @@ void cmMakefile::EnforceDirectoryLevelRules() const
|
||||
case cmPolicies::WARN:
|
||||
// Warn because the user did not provide a minimum required
|
||||
// version.
|
||||
this->GetCMakeInstance()->IssueMessage(cmake::AUTHOR_WARNING,
|
||||
this->GetCMakeInstance()->IssueMessage(MessageType::AUTHOR_WARNING,
|
||||
msg.str(), this->Backtrace);
|
||||
case cmPolicies::OLD:
|
||||
// OLD behavior is to use policy version 2.4 set in
|
||||
@@ -675,8 +676,8 @@ void cmMakefile::EnforceDirectoryLevelRules() const
|
||||
case cmPolicies::REQUIRED_ALWAYS:
|
||||
case cmPolicies::NEW:
|
||||
// NEW behavior is to issue an error.
|
||||
this->GetCMakeInstance()->IssueMessage(cmake::FATAL_ERROR, msg.str(),
|
||||
this->Backtrace);
|
||||
this->GetCMakeInstance()->IssueMessage(MessageType::FATAL_ERROR,
|
||||
msg.str(), this->Backtrace);
|
||||
cmSystemTools::SetFatalErrorOccured();
|
||||
return;
|
||||
}
|
||||
@@ -764,7 +765,7 @@ void cmMakefile::ConfigureFinalPass()
|
||||
if (oldValue &&
|
||||
cmSystemTools::VersionCompare(cmSystemTools::OP_LESS, oldValue, "2.4")) {
|
||||
this->GetCMakeInstance()->IssueMessage(
|
||||
cmake::FATAL_ERROR,
|
||||
MessageType::FATAL_ERROR,
|
||||
"You have set CMAKE_BACKWARDS_COMPATIBILITY to a CMake version less "
|
||||
"than 2.4. This version of CMake only supports backwards compatibility "
|
||||
"with CMake 2.4 or later. For compatibility with older versions please "
|
||||
@@ -785,7 +786,7 @@ void cmMakefile::AddCustomCommandToTarget(
|
||||
cmTargets::iterator ti = this->Targets.find(target);
|
||||
|
||||
if (ti == this->Targets.end()) {
|
||||
cmake::MessageType messageType = cmake::AUTHOR_WARNING;
|
||||
MessageType messageType = MessageType::AUTHOR_WARNING;
|
||||
bool issueMessage = false;
|
||||
std::ostringstream e;
|
||||
switch (this->GetPolicyStatus(cmPolicies::CMP0040)) {
|
||||
@@ -798,7 +799,7 @@ void cmMakefile::AddCustomCommandToTarget(
|
||||
case cmPolicies::REQUIRED_IF_USED:
|
||||
case cmPolicies::REQUIRED_ALWAYS:
|
||||
issueMessage = true;
|
||||
messageType = cmake::FATAL_ERROR;
|
||||
messageType = MessageType::FATAL_ERROR;
|
||||
}
|
||||
|
||||
if (issueMessage) {
|
||||
@@ -826,7 +827,7 @@ void cmMakefile::AddCustomCommandToTarget(
|
||||
e << "Target \"" << target
|
||||
<< "\" is an OBJECT library "
|
||||
"that may not have PRE_BUILD, PRE_LINK, or POST_BUILD commands.";
|
||||
this->IssueMessage(cmake::FATAL_ERROR, e.str());
|
||||
this->IssueMessage(MessageType::FATAL_ERROR, e.str());
|
||||
return;
|
||||
}
|
||||
if (t.GetType() == cmStateEnums::INTERFACE_LIBRARY) {
|
||||
@@ -834,7 +835,7 @@ void cmMakefile::AddCustomCommandToTarget(
|
||||
e << "Target \"" << target
|
||||
<< "\" is an INTERFACE library "
|
||||
"that may not have PRE_BUILD, PRE_LINK, or POST_BUILD commands.";
|
||||
this->IssueMessage(cmake::FATAL_ERROR, e.str());
|
||||
this->IssueMessage(MessageType::FATAL_ERROR, e.str());
|
||||
return;
|
||||
}
|
||||
|
||||
@@ -886,7 +887,7 @@ cmSourceFile* cmMakefile::AddCustomCommandToOutput(
|
||||
if (!cl.empty() && !cl[0].empty() && cl[0][0] == '"') {
|
||||
std::ostringstream e;
|
||||
e << "COMMAND may not contain literal quotes:\n " << cl[0] << "\n";
|
||||
this->IssueMessage(cmake::FATAL_ERROR, e.str());
|
||||
this->IssueMessage(MessageType::FATAL_ERROR, e.str());
|
||||
return nullptr;
|
||||
}
|
||||
}
|
||||
@@ -1278,7 +1279,7 @@ bool cmMakefile::ParseDefineFlag(std::string const& def, bool remove)
|
||||
// This definition has a non-trivial value.
|
||||
switch (this->GetPolicyStatus(cmPolicies::CMP0005)) {
|
||||
case cmPolicies::WARN:
|
||||
this->IssueMessage(cmake::AUTHOR_WARNING,
|
||||
this->IssueMessage(MessageType::AUTHOR_WARNING,
|
||||
cmPolicies::GetPolicyWarning(cmPolicies::CMP0005));
|
||||
CM_FALLTHROUGH;
|
||||
case cmPolicies::OLD:
|
||||
@@ -1288,7 +1289,7 @@ bool cmMakefile::ParseDefineFlag(std::string const& def, bool remove)
|
||||
case cmPolicies::REQUIRED_IF_USED:
|
||||
case cmPolicies::REQUIRED_ALWAYS:
|
||||
this->IssueMessage(
|
||||
cmake::FATAL_ERROR,
|
||||
MessageType::FATAL_ERROR,
|
||||
cmPolicies::GetRequiredPolicyError(cmPolicies::CMP0005));
|
||||
return false;
|
||||
case cmPolicies::NEW:
|
||||
@@ -1617,7 +1618,7 @@ void cmMakefile::ConfigureSubDirectory(cmMakefile* mf)
|
||||
<< "\n"
|
||||
<< cmPolicies::GetPolicyWarning(cmPolicies::CMP0014);
|
||||
/* clang-format on */
|
||||
this->IssueMessage(cmake::AUTHOR_WARNING, e.str());
|
||||
this->IssueMessage(MessageType::AUTHOR_WARNING, e.str());
|
||||
case cmPolicies::OLD:
|
||||
// OLD behavior does not warn.
|
||||
break;
|
||||
@@ -1627,7 +1628,7 @@ void cmMakefile::ConfigureSubDirectory(cmMakefile* mf)
|
||||
CM_FALLTHROUGH;
|
||||
case cmPolicies::NEW:
|
||||
// NEW behavior prints the error.
|
||||
this->IssueMessage(cmake::FATAL_ERROR, e.str());
|
||||
this->IssueMessage(MessageType::FATAL_ERROR, e.str());
|
||||
}
|
||||
return;
|
||||
}
|
||||
@@ -1849,7 +1850,7 @@ void cmMakefile::MaybeWarnUninitialized(std::string const& variable,
|
||||
(sourceFilename && this->IsProjectFile(sourceFilename))) {
|
||||
std::ostringstream msg;
|
||||
msg << "uninitialized variable \'" << variable << "\'";
|
||||
this->IssueMessage(cmake::AUTHOR_WARNING, msg.str());
|
||||
this->IssueMessage(MessageType::AUTHOR_WARNING, msg.str());
|
||||
}
|
||||
}
|
||||
}
|
||||
@@ -1868,7 +1869,7 @@ void cmMakefile::LogUnused(const char* reason, const std::string& name) const
|
||||
if (this->CheckSystemVars || this->IsProjectFile(path.c_str())) {
|
||||
std::ostringstream msg;
|
||||
msg << "unused variable (" << reason << ") \'" << name << "\'";
|
||||
this->IssueMessage(cmake::AUTHOR_WARNING, msg.str());
|
||||
this->IssueMessage(MessageType::AUTHOR_WARNING, msg.str());
|
||||
}
|
||||
}
|
||||
}
|
||||
@@ -2274,8 +2275,8 @@ void cmMakefile::ExpandVariablesCMP0019()
|
||||
<< "The following variable evaluations were encountered:\n"
|
||||
<< w.str();
|
||||
/* clang-format on */
|
||||
this->GetCMakeInstance()->IssueMessage(cmake::AUTHOR_WARNING, m.str(),
|
||||
this->Backtrace);
|
||||
this->GetCMakeInstance()->IssueMessage(MessageType::AUTHOR_WARNING,
|
||||
m.str(), this->Backtrace);
|
||||
}
|
||||
}
|
||||
|
||||
@@ -2494,7 +2495,7 @@ const std::string& cmMakefile::ExpandVariablesInString(
|
||||
const char* filename, long line, bool removeEmpty, bool replaceAt) const
|
||||
{
|
||||
bool compareResults = false;
|
||||
cmake::MessageType mtype = cmake::LOG;
|
||||
MessageType mtype = MessageType::LOG;
|
||||
std::string errorstr;
|
||||
std::string original;
|
||||
|
||||
@@ -2502,7 +2503,7 @@ const std::string& cmMakefile::ExpandVariablesInString(
|
||||
if (atOnly && (!noEscapes || !removeEmpty)) {
|
||||
// This case should never be called. At-only is for
|
||||
// configure-file/string which always does no escapes.
|
||||
this->IssueMessage(cmake::INTERNAL_ERROR,
|
||||
this->IssueMessage(MessageType::INTERNAL_ERROR,
|
||||
"ExpandVariablesInString @ONLY called "
|
||||
"on something with escapes.");
|
||||
return source;
|
||||
@@ -2511,7 +2512,7 @@ const std::string& cmMakefile::ExpandVariablesInString(
|
||||
// Variables used in the WARN case.
|
||||
std::string newResult;
|
||||
std::string newErrorstr;
|
||||
cmake::MessageType newError = cmake::LOG;
|
||||
MessageType newError = MessageType::LOG;
|
||||
|
||||
switch (this->GetPolicyStatus(cmPolicies::CMP0053)) {
|
||||
case cmPolicies::WARN: {
|
||||
@@ -2544,8 +2545,8 @@ const std::string& cmMakefile::ExpandVariablesInString(
|
||||
}
|
||||
|
||||
// If it's an error in either case, just report the error...
|
||||
if (mtype != cmake::LOG) {
|
||||
if (mtype == cmake::FATAL_ERROR) {
|
||||
if (mtype != MessageType::LOG) {
|
||||
if (mtype == MessageType::FATAL_ERROR) {
|
||||
cmSystemTools::SetFatalErrorOccured();
|
||||
}
|
||||
this->IssueMessage(mtype, errorstr);
|
||||
@@ -2584,20 +2585,20 @@ const std::string& cmMakefile::ExpandVariablesInString(
|
||||
msg +=
|
||||
"Using the old result for compatibility since the policy is not set.";
|
||||
|
||||
this->IssueMessage(cmake::AUTHOR_WARNING, msg);
|
||||
this->IssueMessage(MessageType::AUTHOR_WARNING, msg);
|
||||
}
|
||||
|
||||
return source;
|
||||
}
|
||||
|
||||
cmake::MessageType cmMakefile::ExpandVariablesInStringOld(
|
||||
MessageType cmMakefile::ExpandVariablesInStringOld(
|
||||
std::string& errorstr, std::string& source, bool escapeQuotes,
|
||||
bool noEscapes, bool atOnly, const char* filename, long line,
|
||||
bool removeEmpty, bool replaceAt) const
|
||||
{
|
||||
// Fast path strings without any special characters.
|
||||
if (source.find_first_of("$@\\") == std::string::npos) {
|
||||
return cmake::LOG;
|
||||
return MessageType::LOG;
|
||||
}
|
||||
|
||||
// Special-case the @ONLY mode.
|
||||
@@ -2636,7 +2637,7 @@ cmake::MessageType cmMakefile::ExpandVariablesInStringOld(
|
||||
// Append the rest of the unchanged part of the string.
|
||||
source.append(in);
|
||||
|
||||
return cmake::LOG;
|
||||
return MessageType::LOG;
|
||||
}
|
||||
|
||||
// This method replaces ${VAR} and @VAR@ where VAR is looked up
|
||||
@@ -2653,7 +2654,7 @@ cmake::MessageType cmMakefile::ExpandVariablesInStringOld(
|
||||
parser.SetRemoveEmpty(removeEmpty);
|
||||
int res = parser.ParseString(source.c_str(), 0);
|
||||
const char* emsg = parser.GetError();
|
||||
cmake::MessageType mtype = cmake::LOG;
|
||||
MessageType mtype = MessageType::LOG;
|
||||
if (res && !emsg[0]) {
|
||||
source = parser.GetResult();
|
||||
} else {
|
||||
@@ -2676,7 +2677,7 @@ cmake::MessageType cmMakefile::ExpandVariablesInStringOld(
|
||||
// parser reported an error message without failing because the
|
||||
// helper implementation is unhappy, which has always reported an
|
||||
// error.
|
||||
mtype = cmake::FATAL_ERROR;
|
||||
mtype = MessageType::FATAL_ERROR;
|
||||
if (!res) {
|
||||
// This is a real argument parsing error. Use policy CMP0010 to
|
||||
// decide whether it is an error.
|
||||
@@ -2686,7 +2687,7 @@ cmake::MessageType cmMakefile::ExpandVariablesInStringOld(
|
||||
CM_FALLTHROUGH;
|
||||
case cmPolicies::OLD:
|
||||
// OLD behavior is to just warn and continue.
|
||||
mtype = cmake::AUTHOR_WARNING;
|
||||
mtype = MessageType::AUTHOR_WARNING;
|
||||
break;
|
||||
case cmPolicies::REQUIRED_IF_USED:
|
||||
case cmPolicies::REQUIRED_ALWAYS:
|
||||
@@ -2723,7 +2724,7 @@ bool cmMakefile::IsProjectFile(const char* filename) const
|
||||
cmake::GetCMakeFilesDirectory()));
|
||||
}
|
||||
|
||||
cmake::MessageType cmMakefile::ExpandVariablesInStringNew(
|
||||
MessageType cmMakefile::ExpandVariablesInStringNew(
|
||||
std::string& errorstr, std::string& source, bool escapeQuotes,
|
||||
bool noEscapes, bool atOnly, const char* filename, long line,
|
||||
bool replaceAt) const
|
||||
@@ -2740,7 +2741,7 @@ cmake::MessageType cmMakefile::ExpandVariablesInStringNew(
|
||||
std::vector<t_lookup> openstack;
|
||||
bool error = false;
|
||||
bool done = false;
|
||||
cmake::MessageType mtype = cmake::LOG;
|
||||
MessageType mtype = MessageType::LOG;
|
||||
|
||||
cmState* state = this->GetCMakeInstance()->GetState();
|
||||
|
||||
@@ -2819,7 +2820,7 @@ cmake::MessageType cmMakefile::ExpandVariablesInStringNew(
|
||||
std::string(next, this->cmNamedCurly.end()) +
|
||||
"{} is not supported. Only ${}, $ENV{}, "
|
||||
"and $CACHE{} are allowed.";
|
||||
mtype = cmake::FATAL_ERROR;
|
||||
mtype = MessageType::FATAL_ERROR;
|
||||
error = true;
|
||||
}
|
||||
}
|
||||
@@ -2927,7 +2928,7 @@ cmake::MessageType cmMakefile::ExpandVariablesInStringNew(
|
||||
errorstr += "\') in a variable name: "
|
||||
"'" +
|
||||
result.substr(openstack.back().loc) + "'";
|
||||
mtype = cmake::FATAL_ERROR;
|
||||
mtype = MessageType::FATAL_ERROR;
|
||||
error = true;
|
||||
}
|
||||
break;
|
||||
@@ -2958,7 +2959,7 @@ cmake::MessageType cmMakefile::ExpandVariablesInStringNew(
|
||||
emsg << "when parsing string\n"
|
||||
<< " " << source << "\n";
|
||||
emsg << errorstr;
|
||||
mtype = cmake::FATAL_ERROR;
|
||||
mtype = MessageType::FATAL_ERROR;
|
||||
errorstr = emsg.str();
|
||||
} else {
|
||||
// Append the rest of the unchanged part of the string.
|
||||
@@ -3052,7 +3053,7 @@ void cmMakefile::PopFunctionBlockerBarrier(bool reportError)
|
||||
<< " " << lfc << "\n"
|
||||
<< "is not closed.";
|
||||
/* clang-format on */
|
||||
this->IssueMessage(cmake::FATAL_ERROR, e.str());
|
||||
this->IssueMessage(MessageType::FATAL_ERROR, e.str());
|
||||
reportError = false;
|
||||
}
|
||||
}
|
||||
@@ -3205,7 +3206,7 @@ std::unique_ptr<cmFunctionBlocker> cmMakefile::RemoveFunctionBlocker(
|
||||
<< " " << closingContext << "\n"
|
||||
<< "with mis-matching arguments.";
|
||||
/* clang-format on */
|
||||
this->IssueMessage(cmake::AUTHOR_WARNING, e.str());
|
||||
this->IssueMessage(MessageType::AUTHOR_WARNING, e.str());
|
||||
}
|
||||
cmFunctionBlocker* b = *pos;
|
||||
this->FunctionBlockers.erase(pos);
|
||||
@@ -3362,7 +3363,7 @@ int cmMakefile::TryCompile(const std::string& srcdir,
|
||||
// use the cmake object instead of calling cmake
|
||||
cmWorkingDirectory workdir(bindir);
|
||||
if (workdir.Failed()) {
|
||||
this->IssueMessage(cmake::FATAL_ERROR,
|
||||
this->IssueMessage(MessageType::FATAL_ERROR,
|
||||
"Failed to set working directory to " + bindir + " : " +
|
||||
std::strerror(workdir.GetLastResult()));
|
||||
cmSystemTools::SetFatalErrorOccured();
|
||||
@@ -3378,7 +3379,7 @@ int cmMakefile::TryCompile(const std::string& srcdir,
|
||||
cmGlobalGenerator* gg =
|
||||
cm.CreateGlobalGenerator(this->GetGlobalGenerator()->GetName());
|
||||
if (!gg) {
|
||||
this->IssueMessage(cmake::INTERNAL_ERROR,
|
||||
this->IssueMessage(MessageType::INTERNAL_ERROR,
|
||||
"Global generator '" +
|
||||
this->GetGlobalGenerator()->GetName() +
|
||||
"' could not be created.");
|
||||
@@ -3444,7 +3445,7 @@ int cmMakefile::TryCompile(const std::string& srcdir,
|
||||
cmStateEnums::INTERNAL);
|
||||
}
|
||||
if (cm.Configure() != 0) {
|
||||
this->IssueMessage(cmake::FATAL_ERROR,
|
||||
this->IssueMessage(MessageType::FATAL_ERROR,
|
||||
"Failed to configure test project build system.");
|
||||
cmSystemTools::SetFatalErrorOccured();
|
||||
this->IsSourceFileTryCompile = false;
|
||||
@@ -3452,7 +3453,7 @@ int cmMakefile::TryCompile(const std::string& srcdir,
|
||||
}
|
||||
|
||||
if (cm.Generate() != 0) {
|
||||
this->IssueMessage(cmake::FATAL_ERROR,
|
||||
this->IssueMessage(MessageType::FATAL_ERROR,
|
||||
"Failed to generate test project build system.");
|
||||
cmSystemTools::SetFatalErrorOccured();
|
||||
this->IsSourceFileTryCompile = false;
|
||||
@@ -3584,7 +3585,7 @@ std::string cmMakefile::GetModulesFile(const char* filename,
|
||||
<< cmPolicies::GetPolicyWarning(cmPolicies::CMP0017);
|
||||
/* clang-format on */
|
||||
|
||||
this->IssueMessage(cmake::AUTHOR_WARNING, e.str());
|
||||
this->IssueMessage(MessageType::AUTHOR_WARNING, e.str());
|
||||
CM_FALLTHROUGH;
|
||||
}
|
||||
case cmPolicies::OLD:
|
||||
@@ -3740,7 +3741,7 @@ int cmMakefile::ConfigureFile(const char* infile, const char* outfile,
|
||||
std::ostringstream e;
|
||||
e << "File starts with a Byte-Order-Mark that is not UTF-8:\n "
|
||||
<< sinfile;
|
||||
this->IssueMessage(cmake::FATAL_ERROR, e.str());
|
||||
this->IssueMessage(MessageType::FATAL_ERROR, e.str());
|
||||
return 0;
|
||||
}
|
||||
// rewind to copy BOM to output file
|
||||
@@ -3937,7 +3938,7 @@ void cmMakefile::RaiseScope(const std::string& var, const char* varDef)
|
||||
if (!this->StateSnapshot.RaiseScope(var, varDef)) {
|
||||
std::ostringstream m;
|
||||
m << "Cannot set \"" << var << "\": current scope has no parent.";
|
||||
this->IssueMessage(cmake::AUTHOR_WARNING, m.str());
|
||||
this->IssueMessage(MessageType::AUTHOR_WARNING, m.str());
|
||||
return;
|
||||
}
|
||||
|
||||
@@ -4022,7 +4023,7 @@ bool cmMakefile::EnforceUniqueName(std::string const& name, std::string& msg,
|
||||
// target names must be globally unique
|
||||
switch (this->GetPolicyStatus(cmPolicies::CMP0002)) {
|
||||
case cmPolicies::WARN:
|
||||
this->IssueMessage(cmake::AUTHOR_WARNING,
|
||||
this->IssueMessage(MessageType::AUTHOR_WARNING,
|
||||
cmPolicies::GetPolicyWarning(cmPolicies::CMP0002));
|
||||
CM_FALLTHROUGH;
|
||||
case cmPolicies::OLD:
|
||||
@@ -4030,7 +4031,7 @@ bool cmMakefile::EnforceUniqueName(std::string const& name, std::string& msg,
|
||||
case cmPolicies::REQUIRED_IF_USED:
|
||||
case cmPolicies::REQUIRED_ALWAYS:
|
||||
this->IssueMessage(
|
||||
cmake::FATAL_ERROR,
|
||||
MessageType::FATAL_ERROR,
|
||||
cmPolicies::GetRequiredPolicyError(cmPolicies::CMP0002));
|
||||
return true;
|
||||
case cmPolicies::NEW:
|
||||
@@ -4109,7 +4110,7 @@ bool cmMakefile::EnforceUniqueDir(const std::string& srcPath,
|
||||
<< "to work accidentally and is being allowed for "
|
||||
<< "compatibility.";
|
||||
/* clang-format on */
|
||||
this->IssueMessage(cmake::AUTHOR_WARNING, e.str());
|
||||
this->IssueMessage(MessageType::AUTHOR_WARNING, e.str());
|
||||
CM_FALLTHROUGH;
|
||||
case cmPolicies::OLD:
|
||||
// OLD behavior does not warn.
|
||||
@@ -4128,7 +4129,7 @@ bool cmMakefile::EnforceUniqueDir(const std::string& srcPath,
|
||||
<< " " << srcPath << "\n"
|
||||
<< "Specify a unique binary directory name.";
|
||||
/* clang-format on */
|
||||
this->IssueMessage(cmake::FATAL_ERROR, e.str());
|
||||
this->IssueMessage(MessageType::FATAL_ERROR, e.str());
|
||||
break;
|
||||
}
|
||||
|
||||
@@ -4213,7 +4214,7 @@ bool cmMakefile::SetPolicy(const char* id, cmPolicies::PolicyStatus status)
|
||||
if (!cmPolicies::GetPolicyID(id, /* out */ pid)) {
|
||||
std::ostringstream e;
|
||||
e << "Policy \"" << id << "\" is not known to this version of CMake.";
|
||||
this->IssueMessage(cmake::FATAL_ERROR, e.str());
|
||||
this->IssueMessage(MessageType::FATAL_ERROR, e.str());
|
||||
return false;
|
||||
}
|
||||
return this->SetPolicy(pid, status);
|
||||
@@ -4226,7 +4227,7 @@ bool cmMakefile::SetPolicy(cmPolicies::PolicyID id,
|
||||
if (status != cmPolicies::NEW &&
|
||||
cmPolicies::GetPolicyStatus(id) == cmPolicies::REQUIRED_ALWAYS) {
|
||||
std::string msg = cmPolicies::GetRequiredAlwaysPolicyError(id);
|
||||
this->IssueMessage(cmake::FATAL_ERROR, msg);
|
||||
this->IssueMessage(MessageType::FATAL_ERROR, msg);
|
||||
return false;
|
||||
}
|
||||
|
||||
@@ -4237,7 +4238,7 @@ bool cmMakefile::SetPolicy(cmPolicies::PolicyID id,
|
||||
(
|
||||
// Policies set by cmCoreTryCompile::TryCompileCode.
|
||||
id == cmPolicies::CMP0065))) {
|
||||
this->IssueMessage(cmake::DEPRECATION_WARNING,
|
||||
this->IssueMessage(MessageType::DEPRECATION_WARNING,
|
||||
cmPolicies::GetPolicyDeprecatedWarning(id));
|
||||
}
|
||||
|
||||
@@ -4264,7 +4265,7 @@ void cmMakefile::PushPolicy(bool weak, cmPolicies::PolicyMap const& pm)
|
||||
void cmMakefile::PopPolicy()
|
||||
{
|
||||
if (!this->StateSnapshot.PopPolicy()) {
|
||||
this->IssueMessage(cmake::FATAL_ERROR,
|
||||
this->IssueMessage(MessageType::FATAL_ERROR,
|
||||
"cmake_policy POP without matching PUSH");
|
||||
}
|
||||
}
|
||||
@@ -4276,7 +4277,7 @@ void cmMakefile::PopSnapshot(bool reportError)
|
||||
// reject any still-open nested policy scopes with an error.
|
||||
while (!this->StateSnapshot.CanPopPolicyScope()) {
|
||||
if (reportError) {
|
||||
this->IssueMessage(cmake::FATAL_ERROR,
|
||||
this->IssueMessage(MessageType::FATAL_ERROR,
|
||||
"cmake_policy PUSH without matching POP");
|
||||
reportError = false;
|
||||
}
|
||||
@@ -4369,7 +4370,7 @@ bool cmMakefile::AddRequiredTargetFeature(cmTarget* target,
|
||||
if (error) {
|
||||
*error = e.str();
|
||||
} else {
|
||||
this->GetCMakeInstance()->IssueMessage(cmake::FATAL_ERROR, e.str(),
|
||||
this->GetCMakeInstance()->IssueMessage(MessageType::FATAL_ERROR, e.str(),
|
||||
this->Backtrace);
|
||||
}
|
||||
return false;
|
||||
@@ -4416,7 +4417,7 @@ bool cmMakefile::CompileFeatureKnown(cmTarget const* target,
|
||||
if (error) {
|
||||
*error = e.str();
|
||||
} else {
|
||||
this->GetCMakeInstance()->IssueMessage(cmake::FATAL_ERROR, e.str(),
|
||||
this->GetCMakeInstance()->IssueMessage(MessageType::FATAL_ERROR, e.str(),
|
||||
this->Backtrace);
|
||||
}
|
||||
return false;
|
||||
@@ -4436,7 +4437,7 @@ const char* cmMakefile::CompileFeaturesAvailable(const std::string& lang,
|
||||
if (error) {
|
||||
*error = e.str();
|
||||
} else {
|
||||
this->GetCMakeInstance()->IssueMessage(cmake::FATAL_ERROR, e.str(),
|
||||
this->GetCMakeInstance()->IssueMessage(MessageType::FATAL_ERROR, e.str(),
|
||||
this->Backtrace);
|
||||
}
|
||||
return nullptr;
|
||||
@@ -4459,7 +4460,7 @@ const char* cmMakefile::CompileFeaturesAvailable(const std::string& lang,
|
||||
if (error) {
|
||||
*error = e.str();
|
||||
} else {
|
||||
this->GetCMakeInstance()->IssueMessage(cmake::FATAL_ERROR, e.str(),
|
||||
this->GetCMakeInstance()->IssueMessage(MessageType::FATAL_ERROR, e.str(),
|
||||
this->Backtrace);
|
||||
}
|
||||
return nullptr;
|
||||
@@ -4484,7 +4485,7 @@ bool cmMakefile::HaveCStandardAvailable(cmTarget const* target,
|
||||
std::ostringstream e;
|
||||
e << "CMAKE_C_STANDARD_DEFAULT is not set. COMPILE_FEATURES support "
|
||||
"not fully configured for this compiler.";
|
||||
this->IssueMessage(cmake::INTERNAL_ERROR, e.str());
|
||||
this->IssueMessage(MessageType::INTERNAL_ERROR, e.str());
|
||||
// Return true so the caller does not try to lookup the default standard.
|
||||
return true;
|
||||
}
|
||||
@@ -4494,7 +4495,7 @@ bool cmMakefile::HaveCStandardAvailable(cmTarget const* target,
|
||||
e << "The CMAKE_C_STANDARD_DEFAULT variable contains an "
|
||||
"invalid value: \""
|
||||
<< defaultCStandard << "\".";
|
||||
this->IssueMessage(cmake::INTERNAL_ERROR, e.str());
|
||||
this->IssueMessage(MessageType::INTERNAL_ERROR, e.str());
|
||||
return false;
|
||||
}
|
||||
|
||||
@@ -4514,7 +4515,7 @@ bool cmMakefile::HaveCStandardAvailable(cmTarget const* target,
|
||||
std::ostringstream e;
|
||||
e << "The C_STANDARD property on target \"" << target->GetName()
|
||||
<< "\" contained an invalid value: \"" << existingCStandard << "\".";
|
||||
this->IssueMessage(cmake::FATAL_ERROR, e.str());
|
||||
this->IssueMessage(MessageType::FATAL_ERROR, e.str());
|
||||
return false;
|
||||
}
|
||||
|
||||
@@ -4568,7 +4569,7 @@ bool cmMakefile::HaveCxxStandardAvailable(cmTarget const* target,
|
||||
std::ostringstream e;
|
||||
e << "CMAKE_CXX_STANDARD_DEFAULT is not set. COMPILE_FEATURES support "
|
||||
"not fully configured for this compiler.";
|
||||
this->IssueMessage(cmake::INTERNAL_ERROR, e.str());
|
||||
this->IssueMessage(MessageType::INTERNAL_ERROR, e.str());
|
||||
// Return true so the caller does not try to lookup the default standard.
|
||||
return true;
|
||||
}
|
||||
@@ -4578,7 +4579,7 @@ bool cmMakefile::HaveCxxStandardAvailable(cmTarget const* target,
|
||||
e << "The CMAKE_CXX_STANDARD_DEFAULT variable contains an "
|
||||
"invalid value: \""
|
||||
<< defaultCxxStandard << "\".";
|
||||
this->IssueMessage(cmake::INTERNAL_ERROR, e.str());
|
||||
this->IssueMessage(MessageType::INTERNAL_ERROR, e.str());
|
||||
return false;
|
||||
}
|
||||
|
||||
@@ -4602,7 +4603,7 @@ bool cmMakefile::HaveCxxStandardAvailable(cmTarget const* target,
|
||||
std::ostringstream e;
|
||||
e << "The CXX_STANDARD property on target \"" << target->GetName()
|
||||
<< "\" contained an invalid value: \"" << existingCxxStandard << "\".";
|
||||
this->IssueMessage(cmake::FATAL_ERROR, e.str());
|
||||
this->IssueMessage(MessageType::FATAL_ERROR, e.str());
|
||||
return false;
|
||||
}
|
||||
|
||||
@@ -4682,8 +4683,8 @@ bool cmMakefile::AddRequiredTargetCxxFeature(cmTarget* target,
|
||||
if (error) {
|
||||
*error = e.str();
|
||||
} else {
|
||||
this->GetCMakeInstance()->IssueMessage(cmake::FATAL_ERROR, e.str(),
|
||||
this->Backtrace);
|
||||
this->GetCMakeInstance()->IssueMessage(MessageType::FATAL_ERROR,
|
||||
e.str(), this->Backtrace);
|
||||
}
|
||||
return false;
|
||||
}
|
||||
@@ -4703,8 +4704,8 @@ bool cmMakefile::AddRequiredTargetCxxFeature(cmTarget* target,
|
||||
if (error) {
|
||||
*error = e.str();
|
||||
} else {
|
||||
this->GetCMakeInstance()->IssueMessage(cmake::FATAL_ERROR, e.str(),
|
||||
this->Backtrace);
|
||||
this->GetCMakeInstance()->IssueMessage(MessageType::FATAL_ERROR,
|
||||
e.str(), this->Backtrace);
|
||||
}
|
||||
return false;
|
||||
}
|
||||
@@ -4781,8 +4782,8 @@ bool cmMakefile::AddRequiredTargetCFeature(cmTarget* target,
|
||||
if (error) {
|
||||
*error = e.str();
|
||||
} else {
|
||||
this->GetCMakeInstance()->IssueMessage(cmake::FATAL_ERROR, e.str(),
|
||||
this->Backtrace);
|
||||
this->GetCMakeInstance()->IssueMessage(MessageType::FATAL_ERROR,
|
||||
e.str(), this->Backtrace);
|
||||
}
|
||||
return false;
|
||||
}
|
||||
|
||||
+14
-10
@@ -18,13 +18,13 @@
|
||||
|
||||
#include "cmAlgorithms.h"
|
||||
#include "cmListFileCache.h"
|
||||
#include "cmMessageType.h"
|
||||
#include "cmNewLineStyle.h"
|
||||
#include "cmPolicies.h"
|
||||
#include "cmSourceFileLocationKind.h"
|
||||
#include "cmStateSnapshot.h"
|
||||
#include "cmStateTypes.h"
|
||||
#include "cmTarget.h"
|
||||
#include "cmake.h"
|
||||
|
||||
#if defined(CMAKE_BUILD_WITH_CMAKE)
|
||||
# include "cmSourceGroup.h"
|
||||
@@ -46,6 +46,7 @@ class cmState;
|
||||
class cmTest;
|
||||
class cmTestGenerator;
|
||||
class cmVariableWatch;
|
||||
class cmake;
|
||||
|
||||
/** A type-safe wrapper for a string representing a directory id. */
|
||||
class cmDirectoryId
|
||||
@@ -793,7 +794,7 @@ public:
|
||||
cmMakefile* Makefile;
|
||||
};
|
||||
|
||||
void IssueMessage(cmake::MessageType t, std::string const& text) const;
|
||||
void IssueMessage(MessageType t, std::string const& text) const;
|
||||
|
||||
/** Set whether or not to report a CMP0000 violation. */
|
||||
void SetCheckCMP0000(bool b) { this->CheckCMP0000 = b; }
|
||||
@@ -982,15 +983,18 @@ private:
|
||||
friend class BuildsystemFileScope;
|
||||
|
||||
// CMP0053 == old
|
||||
cmake::MessageType ExpandVariablesInStringOld(
|
||||
std::string& errorstr, std::string& source, bool escapeQuotes,
|
||||
bool noEscapes, bool atOnly, const char* filename, long line,
|
||||
bool removeEmpty, bool replaceAt) const;
|
||||
MessageType ExpandVariablesInStringOld(std::string& errorstr,
|
||||
std::string& source,
|
||||
bool escapeQuotes, bool noEscapes,
|
||||
bool atOnly, const char* filename,
|
||||
long line, bool removeEmpty,
|
||||
bool replaceAt) const;
|
||||
// CMP0053 == new
|
||||
cmake::MessageType ExpandVariablesInStringNew(
|
||||
std::string& errorstr, std::string& source, bool escapeQuotes,
|
||||
bool noEscapes, bool atOnly, const char* filename, long line,
|
||||
bool replaceAt) const;
|
||||
MessageType ExpandVariablesInStringNew(std::string& errorstr,
|
||||
std::string& source,
|
||||
bool escapeQuotes, bool noEscapes,
|
||||
bool atOnly, const char* filename,
|
||||
long line, bool replaceAt) const;
|
||||
/**
|
||||
* Old version of GetSourceFileWithOutput(const std::string&) kept for
|
||||
* backward-compatibility. It implements a linear search and support
|
||||
|
||||
@@ -4,8 +4,8 @@
|
||||
|
||||
#include "cmExprParserHelper.h"
|
||||
#include "cmMakefile.h"
|
||||
#include "cmMessageType.h"
|
||||
#include "cm_kwiml.h"
|
||||
#include "cmake.h"
|
||||
|
||||
#include <stdio.h>
|
||||
|
||||
@@ -104,7 +104,7 @@ bool cmMathCommand::HandleExprCommand(std::vector<std::string> const& args)
|
||||
|
||||
std::string const& w = helper.GetWarning();
|
||||
if (!w.empty()) {
|
||||
this->Makefile->IssueMessage(cmake::AUTHOR_WARNING, w);
|
||||
this->Makefile->IssueMessage(MessageType::AUTHOR_WARNING, w);
|
||||
}
|
||||
|
||||
this->Makefile->AddDefinition(outputVariable, buffer);
|
||||
|
||||
+10
-10
@@ -4,9 +4,9 @@
|
||||
|
||||
#include "cmAlgorithms.h"
|
||||
#include "cmMakefile.h"
|
||||
#include "cmMessageType.h"
|
||||
#include "cmMessenger.h"
|
||||
#include "cmSystemTools.h"
|
||||
#include "cmake.h"
|
||||
|
||||
class cmExecutionStatus;
|
||||
|
||||
@@ -20,26 +20,26 @@ bool cmMessageCommand::InitialPass(std::vector<std::string> const& args,
|
||||
}
|
||||
std::vector<std::string>::const_iterator i = args.begin();
|
||||
|
||||
cmake::MessageType type = cmake::MESSAGE;
|
||||
MessageType type = MessageType::MESSAGE;
|
||||
bool status = false;
|
||||
bool fatal = false;
|
||||
if (*i == "SEND_ERROR") {
|
||||
type = cmake::FATAL_ERROR;
|
||||
type = MessageType::FATAL_ERROR;
|
||||
++i;
|
||||
} else if (*i == "FATAL_ERROR") {
|
||||
fatal = true;
|
||||
type = cmake::FATAL_ERROR;
|
||||
type = MessageType::FATAL_ERROR;
|
||||
++i;
|
||||
} else if (*i == "WARNING") {
|
||||
type = cmake::WARNING;
|
||||
type = MessageType::WARNING;
|
||||
++i;
|
||||
} else if (*i == "AUTHOR_WARNING") {
|
||||
if (this->Makefile->IsSet("CMAKE_SUPPRESS_DEVELOPER_ERRORS") &&
|
||||
!this->Makefile->IsOn("CMAKE_SUPPRESS_DEVELOPER_ERRORS")) {
|
||||
fatal = true;
|
||||
type = cmake::AUTHOR_ERROR;
|
||||
type = MessageType::AUTHOR_ERROR;
|
||||
} else if (!this->Makefile->IsOn("CMAKE_SUPPRESS_DEVELOPER_WARNINGS")) {
|
||||
type = cmake::AUTHOR_WARNING;
|
||||
type = MessageType::AUTHOR_WARNING;
|
||||
} else {
|
||||
return true;
|
||||
}
|
||||
@@ -50,10 +50,10 @@ bool cmMessageCommand::InitialPass(std::vector<std::string> const& args,
|
||||
} else if (*i == "DEPRECATION") {
|
||||
if (this->Makefile->IsOn("CMAKE_ERROR_DEPRECATED")) {
|
||||
fatal = true;
|
||||
type = cmake::DEPRECATION_ERROR;
|
||||
type = MessageType::DEPRECATION_ERROR;
|
||||
} else if ((!this->Makefile->IsSet("CMAKE_WARN_DEPRECATED") ||
|
||||
this->Makefile->IsOn("CMAKE_WARN_DEPRECATED"))) {
|
||||
type = cmake::DEPRECATION_WARNING;
|
||||
type = MessageType::DEPRECATION_WARNING;
|
||||
} else {
|
||||
return true;
|
||||
}
|
||||
@@ -62,7 +62,7 @@ bool cmMessageCommand::InitialPass(std::vector<std::string> const& args,
|
||||
|
||||
std::string message = cmJoin(cmMakeRange(i, args.end()), std::string());
|
||||
|
||||
if (type != cmake::MESSAGE) {
|
||||
if (type != MessageType::MESSAGE) {
|
||||
// we've overridden the message type, above, so display it directly
|
||||
cmMessenger* m = this->Makefile->GetMessenger();
|
||||
m->DisplayMessage(type, message, this->Makefile->GetBacktrace());
|
||||
|
||||
@@ -0,0 +1,21 @@
|
||||
/* Distributed under the OSI-approved BSD 3-Clause License. See accompanying
|
||||
file Copyright.txt or https://cmake.org/licensing for details. */
|
||||
#ifndef cmMessageType_h
|
||||
#define cmMessageType_h
|
||||
|
||||
#include "cmConfigure.h" // IWYU pragma: keep
|
||||
|
||||
enum class MessageType
|
||||
{
|
||||
AUTHOR_WARNING,
|
||||
AUTHOR_ERROR,
|
||||
FATAL_ERROR,
|
||||
INTERNAL_ERROR,
|
||||
MESSAGE,
|
||||
WARNING,
|
||||
LOG,
|
||||
DEPRECATION_ERROR,
|
||||
DEPRECATION_WARNING
|
||||
};
|
||||
|
||||
#endif
|
||||
+34
-34
@@ -12,47 +12,47 @@
|
||||
|
||||
#include <sstream>
|
||||
|
||||
cmake::MessageType cmMessenger::ConvertMessageType(cmake::MessageType t) const
|
||||
MessageType cmMessenger::ConvertMessageType(MessageType t) const
|
||||
{
|
||||
bool warningsAsErrors;
|
||||
|
||||
if (t == cmake::AUTHOR_WARNING || t == cmake::AUTHOR_ERROR) {
|
||||
if (t == MessageType::AUTHOR_WARNING || t == MessageType::AUTHOR_ERROR) {
|
||||
warningsAsErrors = this->GetDevWarningsAsErrors();
|
||||
if (warningsAsErrors && t == cmake::AUTHOR_WARNING) {
|
||||
t = cmake::AUTHOR_ERROR;
|
||||
} else if (!warningsAsErrors && t == cmake::AUTHOR_ERROR) {
|
||||
t = cmake::AUTHOR_WARNING;
|
||||
if (warningsAsErrors && t == MessageType::AUTHOR_WARNING) {
|
||||
t = MessageType::AUTHOR_ERROR;
|
||||
} else if (!warningsAsErrors && t == MessageType::AUTHOR_ERROR) {
|
||||
t = MessageType::AUTHOR_WARNING;
|
||||
}
|
||||
} else if (t == cmake::DEPRECATION_WARNING ||
|
||||
t == cmake::DEPRECATION_ERROR) {
|
||||
} else if (t == MessageType::DEPRECATION_WARNING ||
|
||||
t == MessageType::DEPRECATION_ERROR) {
|
||||
warningsAsErrors = this->GetDeprecatedWarningsAsErrors();
|
||||
if (warningsAsErrors && t == cmake::DEPRECATION_WARNING) {
|
||||
t = cmake::DEPRECATION_ERROR;
|
||||
} else if (!warningsAsErrors && t == cmake::DEPRECATION_ERROR) {
|
||||
t = cmake::DEPRECATION_WARNING;
|
||||
if (warningsAsErrors && t == MessageType::DEPRECATION_WARNING) {
|
||||
t = MessageType::DEPRECATION_ERROR;
|
||||
} else if (!warningsAsErrors && t == MessageType::DEPRECATION_ERROR) {
|
||||
t = MessageType::DEPRECATION_WARNING;
|
||||
}
|
||||
}
|
||||
|
||||
return t;
|
||||
}
|
||||
|
||||
bool cmMessenger::IsMessageTypeVisible(cmake::MessageType t) const
|
||||
bool cmMessenger::IsMessageTypeVisible(MessageType t) const
|
||||
{
|
||||
bool isVisible = true;
|
||||
|
||||
if (t == cmake::DEPRECATION_ERROR) {
|
||||
if (t == MessageType::DEPRECATION_ERROR) {
|
||||
if (!this->GetDeprecatedWarningsAsErrors()) {
|
||||
isVisible = false;
|
||||
}
|
||||
} else if (t == cmake::DEPRECATION_WARNING) {
|
||||
} else if (t == MessageType::DEPRECATION_WARNING) {
|
||||
if (this->GetSuppressDeprecatedWarnings()) {
|
||||
isVisible = false;
|
||||
}
|
||||
} else if (t == cmake::AUTHOR_ERROR) {
|
||||
} else if (t == MessageType::AUTHOR_ERROR) {
|
||||
if (!this->GetDevWarningsAsErrors()) {
|
||||
isVisible = false;
|
||||
}
|
||||
} else if (t == cmake::AUTHOR_WARNING) {
|
||||
} else if (t == MessageType::AUTHOR_WARNING) {
|
||||
if (this->GetSuppressDevWarnings()) {
|
||||
isVisible = false;
|
||||
}
|
||||
@@ -61,22 +61,22 @@ bool cmMessenger::IsMessageTypeVisible(cmake::MessageType t) const
|
||||
return isVisible;
|
||||
}
|
||||
|
||||
static bool printMessagePreamble(cmake::MessageType t, std::ostream& msg)
|
||||
static bool printMessagePreamble(MessageType t, std::ostream& msg)
|
||||
{
|
||||
// Construct the message header.
|
||||
if (t == cmake::FATAL_ERROR) {
|
||||
if (t == MessageType::FATAL_ERROR) {
|
||||
msg << "CMake Error";
|
||||
} else if (t == cmake::INTERNAL_ERROR) {
|
||||
} else if (t == MessageType::INTERNAL_ERROR) {
|
||||
msg << "CMake Internal Error (please report a bug)";
|
||||
} else if (t == cmake::LOG) {
|
||||
} else if (t == MessageType::LOG) {
|
||||
msg << "CMake Debug Log";
|
||||
} else if (t == cmake::DEPRECATION_ERROR) {
|
||||
} else if (t == MessageType::DEPRECATION_ERROR) {
|
||||
msg << "CMake Deprecation Error";
|
||||
} else if (t == cmake::DEPRECATION_WARNING) {
|
||||
} else if (t == MessageType::DEPRECATION_WARNING) {
|
||||
msg << "CMake Deprecation Warning";
|
||||
} else if (t == cmake::AUTHOR_WARNING) {
|
||||
} else if (t == MessageType::AUTHOR_WARNING) {
|
||||
msg << "CMake Warning (dev)";
|
||||
} else if (t == cmake::AUTHOR_ERROR) {
|
||||
} else if (t == MessageType::AUTHOR_ERROR) {
|
||||
msg << "CMake Error (dev)";
|
||||
} else {
|
||||
msg << "CMake Warning";
|
||||
@@ -92,13 +92,13 @@ void printMessageText(std::ostream& msg, std::string const& text)
|
||||
formatter.PrintFormatted(msg, text.c_str());
|
||||
}
|
||||
|
||||
void displayMessage(cmake::MessageType t, std::ostringstream& msg)
|
||||
void displayMessage(MessageType t, std::ostringstream& msg)
|
||||
{
|
||||
// Add a note about warning suppression.
|
||||
if (t == cmake::AUTHOR_WARNING) {
|
||||
if (t == MessageType::AUTHOR_WARNING) {
|
||||
msg << "This warning is for project developers. Use -Wno-dev to suppress "
|
||||
"it.";
|
||||
} else if (t == cmake::AUTHOR_ERROR) {
|
||||
} else if (t == MessageType::AUTHOR_ERROR) {
|
||||
msg << "This error is for project developers. Use -Wno-error=dev to "
|
||||
"suppress "
|
||||
"it.";
|
||||
@@ -109,7 +109,7 @@ void displayMessage(cmake::MessageType t, std::ostringstream& msg)
|
||||
|
||||
#if defined(CMAKE_BUILD_WITH_CMAKE)
|
||||
// Add a C++ stack trace to internal errors.
|
||||
if (t == cmake::INTERNAL_ERROR) {
|
||||
if (t == MessageType::INTERNAL_ERROR) {
|
||||
std::string stack = cmsys::SystemInformation::GetProgramStack(0, 0);
|
||||
if (!stack.empty()) {
|
||||
if (cmHasLiteralPrefix(stack, "WARNING:")) {
|
||||
@@ -121,8 +121,8 @@ void displayMessage(cmake::MessageType t, std::ostringstream& msg)
|
||||
#endif
|
||||
|
||||
// Output the message.
|
||||
if (t == cmake::FATAL_ERROR || t == cmake::INTERNAL_ERROR ||
|
||||
t == cmake::DEPRECATION_ERROR || t == cmake::AUTHOR_ERROR) {
|
||||
if (t == MessageType::FATAL_ERROR || t == MessageType::INTERNAL_ERROR ||
|
||||
t == MessageType::DEPRECATION_ERROR || t == MessageType::AUTHOR_ERROR) {
|
||||
cmSystemTools::SetErrorOccured();
|
||||
cmSystemTools::Message(msg.str().c_str(), "Error");
|
||||
} else {
|
||||
@@ -130,13 +130,13 @@ void displayMessage(cmake::MessageType t, std::ostringstream& msg)
|
||||
}
|
||||
}
|
||||
|
||||
void cmMessenger::IssueMessage(cmake::MessageType t, const std::string& text,
|
||||
void cmMessenger::IssueMessage(MessageType t, const std::string& text,
|
||||
const cmListFileBacktrace& backtrace) const
|
||||
{
|
||||
bool force = false;
|
||||
if (!force) {
|
||||
// override the message type, if needed, for warnings and errors
|
||||
cmake::MessageType override = this->ConvertMessageType(t);
|
||||
MessageType override = this->ConvertMessageType(t);
|
||||
if (override != t) {
|
||||
t = override;
|
||||
force = true;
|
||||
@@ -149,7 +149,7 @@ void cmMessenger::IssueMessage(cmake::MessageType t, const std::string& text,
|
||||
this->DisplayMessage(t, text, backtrace);
|
||||
}
|
||||
|
||||
void cmMessenger::DisplayMessage(cmake::MessageType t, const std::string& text,
|
||||
void cmMessenger::DisplayMessage(MessageType t, const std::string& text,
|
||||
const cmListFileBacktrace& backtrace) const
|
||||
{
|
||||
std::ostringstream msg;
|
||||
|
||||
@@ -6,7 +6,7 @@
|
||||
#include "cmConfigure.h" // IWYU pragma: keep
|
||||
|
||||
#include "cmListFileCache.h"
|
||||
#include "cmake.h"
|
||||
#include "cmMessageType.h"
|
||||
|
||||
#include <string>
|
||||
|
||||
@@ -14,10 +14,10 @@ class cmMessenger
|
||||
{
|
||||
public:
|
||||
void IssueMessage(
|
||||
cmake::MessageType t, std::string const& text,
|
||||
MessageType t, std::string const& text,
|
||||
cmListFileBacktrace const& backtrace = cmListFileBacktrace()) const;
|
||||
|
||||
void DisplayMessage(cmake::MessageType t, std::string const& text,
|
||||
void DisplayMessage(MessageType t, std::string const& text,
|
||||
cmListFileBacktrace const& backtrace) const;
|
||||
|
||||
void SetSuppressDevWarnings(bool suppress)
|
||||
@@ -49,8 +49,8 @@ public:
|
||||
}
|
||||
|
||||
private:
|
||||
bool IsMessageTypeVisible(cmake::MessageType t) const;
|
||||
cmake::MessageType ConvertMessageType(cmake::MessageType t) const;
|
||||
bool IsMessageTypeVisible(MessageType t) const;
|
||||
MessageType ConvertMessageType(MessageType t) const;
|
||||
|
||||
bool SuppressDevWarnings = false;
|
||||
bool SuppressDeprecatedWarnings = false;
|
||||
|
||||
@@ -6,12 +6,12 @@
|
||||
|
||||
#include "cmAlgorithms.h"
|
||||
#include "cmMakefile.h"
|
||||
#include "cmMessageType.h"
|
||||
#include "cmPolicies.h"
|
||||
#include "cmState.h"
|
||||
#include "cmStateSnapshot.h"
|
||||
#include "cmStateTypes.h"
|
||||
#include "cmSystemTools.h"
|
||||
#include "cmake.h"
|
||||
|
||||
class cmExecutionStatus;
|
||||
|
||||
@@ -81,7 +81,7 @@ bool cmOptionCommand::InitialPass(std::vector<std::string> const& args,
|
||||
"For compatibility with older versions of CMake, option "
|
||||
"is clearing the normal variable '"
|
||||
<< args[0] << "'.";
|
||||
this->Makefile->IssueMessage(cmake::AUTHOR_WARNING, w.str());
|
||||
this->Makefile->IssueMessage(MessageType::AUTHOR_WARNING, w.str());
|
||||
}
|
||||
}
|
||||
return true;
|
||||
|
||||
@@ -5,6 +5,7 @@
|
||||
#include "cmAlgorithms.h"
|
||||
#include "cmGeneratorTarget.h"
|
||||
#include "cmGlobalGenerator.h"
|
||||
#include "cmMessageType.h"
|
||||
#include "cmSystemTools.h"
|
||||
#include "cmake.h"
|
||||
|
||||
@@ -475,7 +476,7 @@ void cmOrderDirectories::FindImplicitConflicts()
|
||||
<< " libraries in implicit directories:\n"
|
||||
<< text << "Some of these libraries may not be found correctly.";
|
||||
this->GlobalGenerator->GetCMakeInstance()->IssueMessage(
|
||||
cmake::WARNING, w.str(), this->Target->GetBacktrace());
|
||||
MessageType::WARNING, w.str(), this->Target->GetBacktrace());
|
||||
}
|
||||
|
||||
void cmOrderDirectories::OrderDirectories()
|
||||
@@ -544,7 +545,7 @@ void cmOrderDirectories::DiagnoseCycle()
|
||||
}
|
||||
e << "Some of these libraries may not be found correctly.";
|
||||
this->GlobalGenerator->GetCMakeInstance()->IssueMessage(
|
||||
cmake::WARNING, e.str(), this->Target->GetBacktrace());
|
||||
MessageType::WARNING, e.str(), this->Target->GetBacktrace());
|
||||
}
|
||||
|
||||
bool cmOrderDirectories::IsSameDirectory(std::string const& l,
|
||||
|
||||
@@ -9,8 +9,8 @@
|
||||
|
||||
#include "cmAlgorithms.h"
|
||||
#include "cmMakefile.h"
|
||||
#include "cmMessageType.h"
|
||||
#include "cmSystemTools.h"
|
||||
#include "cmake.h"
|
||||
|
||||
class cmExecutionStatus;
|
||||
|
||||
@@ -46,7 +46,7 @@ bool cmParseArgumentsCommand::InitialPass(std::vector<std::string> const& args,
|
||||
if (*argIter == "PARSE_ARGV") {
|
||||
if (args.size() != 6) {
|
||||
this->Makefile->IssueMessage(
|
||||
cmake::FATAL_ERROR,
|
||||
MessageType::FATAL_ERROR,
|
||||
"PARSE_ARGV must be called with exactly 6 arguments.");
|
||||
cmSystemTools::SetFatalErrorOccured();
|
||||
return true;
|
||||
@@ -54,7 +54,7 @@ bool cmParseArgumentsCommand::InitialPass(std::vector<std::string> const& args,
|
||||
parseFromArgV = true;
|
||||
argIter++; // move past PARSE_ARGV
|
||||
if (!cmSystemTools::StringToULong(argIter->c_str(), &argvStart)) {
|
||||
this->Makefile->IssueMessage(cmake::FATAL_ERROR,
|
||||
this->Makefile->IssueMessage(MessageType::FATAL_ERROR,
|
||||
"PARSE_ARGV index '" + *argIter +
|
||||
"' is not an unsigned integer");
|
||||
cmSystemTools::SetFatalErrorOccured();
|
||||
@@ -86,7 +86,8 @@ bool cmParseArgumentsCommand::InitialPass(std::vector<std::string> const& args,
|
||||
cmSystemTools::ExpandListArgument(*argIter++, list);
|
||||
for (std::string const& iter : list) {
|
||||
if (!used_keywords.insert(iter).second) {
|
||||
this->GetMakefile()->IssueMessage(cmake::WARNING, dup_warning + iter);
|
||||
this->GetMakefile()->IssueMessage(MessageType::WARNING,
|
||||
dup_warning + iter);
|
||||
}
|
||||
options[iter]; // default initialize
|
||||
}
|
||||
@@ -96,7 +97,8 @@ bool cmParseArgumentsCommand::InitialPass(std::vector<std::string> const& args,
|
||||
cmSystemTools::ExpandListArgument(*argIter++, list);
|
||||
for (std::string const& iter : list) {
|
||||
if (!used_keywords.insert(iter).second) {
|
||||
this->GetMakefile()->IssueMessage(cmake::WARNING, dup_warning + iter);
|
||||
this->GetMakefile()->IssueMessage(MessageType::WARNING,
|
||||
dup_warning + iter);
|
||||
}
|
||||
singleValArgs[iter]; // default initialize
|
||||
}
|
||||
@@ -106,7 +108,8 @@ bool cmParseArgumentsCommand::InitialPass(std::vector<std::string> const& args,
|
||||
cmSystemTools::ExpandListArgument(*argIter++, list);
|
||||
for (std::string const& iter : list) {
|
||||
if (!used_keywords.insert(iter).second) {
|
||||
this->GetMakefile()->IssueMessage(cmake::WARNING, dup_warning + iter);
|
||||
this->GetMakefile()->IssueMessage(MessageType::WARNING,
|
||||
dup_warning + iter);
|
||||
}
|
||||
multiValArgs[iter]; // default initialize
|
||||
}
|
||||
@@ -131,7 +134,7 @@ bool cmParseArgumentsCommand::InitialPass(std::vector<std::string> const& args,
|
||||
std::string argc = this->Makefile->GetSafeDefinition("ARGC");
|
||||
unsigned long count;
|
||||
if (!cmSystemTools::StringToULong(argc.c_str(), &count)) {
|
||||
this->Makefile->IssueMessage(cmake::FATAL_ERROR,
|
||||
this->Makefile->IssueMessage(MessageType::FATAL_ERROR,
|
||||
"PARSE_ARGV called with ARGC='" + argc +
|
||||
"' that is not an unsigned integer");
|
||||
cmSystemTools::SetFatalErrorOccured();
|
||||
@@ -142,7 +145,7 @@ bool cmParseArgumentsCommand::InitialPass(std::vector<std::string> const& args,
|
||||
argName << "ARGV" << i;
|
||||
const char* arg = this->Makefile->GetDefinition(argName.str());
|
||||
if (!arg) {
|
||||
this->Makefile->IssueMessage(cmake::FATAL_ERROR,
|
||||
this->Makefile->IssueMessage(MessageType::FATAL_ERROR,
|
||||
"PARSE_ARGV called with " +
|
||||
argName.str() + " not set");
|
||||
cmSystemTools::SetFatalErrorOccured();
|
||||
|
||||
@@ -2,11 +2,11 @@
|
||||
|
||||
#include "cmAlgorithms.h"
|
||||
#include "cmMakefile.h"
|
||||
#include "cmMessageType.h"
|
||||
#include "cmState.h"
|
||||
#include "cmStateTypes.h"
|
||||
#include "cmSystemTools.h"
|
||||
#include "cmVersion.h"
|
||||
#include "cmake.h"
|
||||
|
||||
#include <assert.h>
|
||||
#include <ctype.h>
|
||||
@@ -128,7 +128,7 @@ static void DiagnoseAncientPolicies(
|
||||
<< "Please either update your CMakeLists.txt files to conform to "
|
||||
<< "the new behavior or use an older version of CMake that still "
|
||||
<< "supports the old behavior.";
|
||||
mf->IssueMessage(cmake::FATAL_ERROR, e.str());
|
||||
mf->IssueMessage(MessageType::FATAL_ERROR, e.str());
|
||||
}
|
||||
|
||||
static bool GetPolicyDefault(cmMakefile* mf, std::string const& policy,
|
||||
@@ -146,7 +146,7 @@ static bool GetPolicyDefault(cmMakefile* mf, std::string const& policy,
|
||||
std::ostringstream e;
|
||||
e << defaultVar << " has value \"" << defaultValue
|
||||
<< "\" but must be \"OLD\", \"NEW\", or \"\" (empty).";
|
||||
mf->IssueMessage(cmake::FATAL_ERROR, e.str());
|
||||
mf->IssueMessage(MessageType::FATAL_ERROR, e.str());
|
||||
return false;
|
||||
}
|
||||
|
||||
@@ -167,14 +167,14 @@ bool cmPolicies::ApplyPolicyVersion(cmMakefile* mf,
|
||||
std::ostringstream e;
|
||||
e << "Invalid policy version value \"" << version_min << "\". "
|
||||
<< "A numeric major.minor[.patch[.tweak]] must be given.";
|
||||
mf->IssueMessage(cmake::FATAL_ERROR, e.str());
|
||||
mf->IssueMessage(MessageType::FATAL_ERROR, e.str());
|
||||
return false;
|
||||
}
|
||||
|
||||
// it is an error if the policy version is less than 2.4
|
||||
if (minMajor < 2 || (minMajor == 2 && minMinor < 4)) {
|
||||
mf->IssueMessage(
|
||||
cmake::FATAL_ERROR,
|
||||
MessageType::FATAL_ERROR,
|
||||
"Compatibility with CMake < 2.4 is not supported by CMake >= 3.0. "
|
||||
"For compatibility with older versions please use any CMake 2.8.x "
|
||||
"release or lower.");
|
||||
@@ -199,7 +199,7 @@ bool cmPolicies::ApplyPolicyVersion(cmMakefile* mf,
|
||||
<< "This is not allowed because the greater version may have new "
|
||||
<< "policies not known to this CMake. "
|
||||
<< "You may need a newer CMake version to build this project.";
|
||||
mf->IssueMessage(cmake::FATAL_ERROR, e.str());
|
||||
mf->IssueMessage(MessageType::FATAL_ERROR, e.str());
|
||||
return false;
|
||||
}
|
||||
|
||||
@@ -218,7 +218,7 @@ bool cmPolicies::ApplyPolicyVersion(cmMakefile* mf,
|
||||
std::ostringstream e;
|
||||
e << "Invalid policy max version value \"" << version_max << "\". "
|
||||
<< "A numeric major.minor[.patch[.tweak]] must be given.";
|
||||
mf->IssueMessage(cmake::FATAL_ERROR, e.str());
|
||||
mf->IssueMessage(MessageType::FATAL_ERROR, e.str());
|
||||
return false;
|
||||
}
|
||||
|
||||
@@ -232,7 +232,7 @@ bool cmPolicies::ApplyPolicyVersion(cmMakefile* mf,
|
||||
e << "Policy VERSION range \"" << version_min << "..." << version_max
|
||||
<< "\""
|
||||
<< " specifies a larger minimum than maximum.";
|
||||
mf->IssueMessage(cmake::FATAL_ERROR, e.str());
|
||||
mf->IssueMessage(MessageType::FATAL_ERROR, e.str());
|
||||
return false;
|
||||
}
|
||||
|
||||
|
||||
+16
-13
@@ -9,10 +9,10 @@
|
||||
|
||||
#include "cmAlgorithms.h"
|
||||
#include "cmMakefile.h"
|
||||
#include "cmMessageType.h"
|
||||
#include "cmPolicies.h"
|
||||
#include "cmStateTypes.h"
|
||||
#include "cmSystemTools.h"
|
||||
#include "cmake.h"
|
||||
|
||||
class cmExecutionStatus;
|
||||
|
||||
@@ -90,7 +90,8 @@ bool cmProjectCommand::InitialPass(std::vector<std::string> const& args,
|
||||
if (args[i] == "LANGUAGES") {
|
||||
if (haveLanguages) {
|
||||
this->Makefile->IssueMessage(
|
||||
cmake::FATAL_ERROR, "LANGUAGES may be specified at most once.");
|
||||
MessageType::FATAL_ERROR,
|
||||
"LANGUAGES may be specified at most once.");
|
||||
cmSystemTools::SetFatalErrorOccured();
|
||||
return true;
|
||||
}
|
||||
@@ -105,11 +106,11 @@ bool cmProjectCommand::InitialPass(std::vector<std::string> const& args,
|
||||
"keyword: ";
|
||||
msg += cmJoin(languages, ", ");
|
||||
msg += '.';
|
||||
this->Makefile->IssueMessage(cmake::WARNING, msg);
|
||||
this->Makefile->IssueMessage(MessageType::WARNING, msg);
|
||||
}
|
||||
} else if (args[i] == "VERSION") {
|
||||
if (haveVersion) {
|
||||
this->Makefile->IssueMessage(cmake::FATAL_ERROR,
|
||||
this->Makefile->IssueMessage(MessageType::FATAL_ERROR,
|
||||
"VERSION may be specified at most once.");
|
||||
cmSystemTools::SetFatalErrorOccured();
|
||||
return true;
|
||||
@@ -121,7 +122,7 @@ bool cmProjectCommand::InitialPass(std::vector<std::string> const& args,
|
||||
doing = DoingVersion;
|
||||
missedValueReporter = [this, &resetReporter]() {
|
||||
this->Makefile->IssueMessage(
|
||||
cmake::WARNING,
|
||||
MessageType::WARNING,
|
||||
"VERSION keyword not followed by a value or was followed by a "
|
||||
"value that expanded to nothing.");
|
||||
resetReporter();
|
||||
@@ -129,7 +130,8 @@ bool cmProjectCommand::InitialPass(std::vector<std::string> const& args,
|
||||
} else if (args[i] == "DESCRIPTION") {
|
||||
if (haveDescription) {
|
||||
this->Makefile->IssueMessage(
|
||||
cmake::FATAL_ERROR, "DESCRIPTION may be specified at most once.");
|
||||
MessageType::FATAL_ERROR,
|
||||
"DESCRIPTION may be specified at most once.");
|
||||
cmSystemTools::SetFatalErrorOccured();
|
||||
return true;
|
||||
}
|
||||
@@ -140,7 +142,7 @@ bool cmProjectCommand::InitialPass(std::vector<std::string> const& args,
|
||||
doing = DoingDescription;
|
||||
missedValueReporter = [this, &resetReporter]() {
|
||||
this->Makefile->IssueMessage(
|
||||
cmake::WARNING,
|
||||
MessageType::WARNING,
|
||||
"DESCRIPTION keyword not followed by a value or was followed "
|
||||
"by a value that expanded to nothing.");
|
||||
resetReporter();
|
||||
@@ -148,7 +150,8 @@ bool cmProjectCommand::InitialPass(std::vector<std::string> const& args,
|
||||
} else if (args[i] == "HOMEPAGE_URL") {
|
||||
if (haveHomepage) {
|
||||
this->Makefile->IssueMessage(
|
||||
cmake::FATAL_ERROR, "HOMEPAGE_URL may be specified at most once.");
|
||||
MessageType::FATAL_ERROR,
|
||||
"HOMEPAGE_URL may be specified at most once.");
|
||||
cmSystemTools::SetFatalErrorOccured();
|
||||
return true;
|
||||
}
|
||||
@@ -156,7 +159,7 @@ bool cmProjectCommand::InitialPass(std::vector<std::string> const& args,
|
||||
doing = DoingHomepage;
|
||||
missedValueReporter = [this, &resetReporter]() {
|
||||
this->Makefile->IssueMessage(
|
||||
cmake::WARNING,
|
||||
MessageType::WARNING,
|
||||
"HOMEPAGE_URL keyword not followed by a value or was followed "
|
||||
"by a value that expanded to nothing.");
|
||||
resetReporter();
|
||||
@@ -188,7 +191,7 @@ bool cmProjectCommand::InitialPass(std::vector<std::string> const& args,
|
||||
if ((haveVersion || haveDescription || haveHomepage) && !haveLanguages &&
|
||||
!languages.empty()) {
|
||||
this->Makefile->IssueMessage(
|
||||
cmake::FATAL_ERROR,
|
||||
MessageType::FATAL_ERROR,
|
||||
"project with VERSION, DESCRIPTION or HOMEPAGE_URL must "
|
||||
"use LANGUAGES before language names.");
|
||||
cmSystemTools::SetFatalErrorOccured();
|
||||
@@ -204,7 +207,7 @@ bool cmProjectCommand::InitialPass(std::vector<std::string> const& args,
|
||||
// Set project VERSION variables to given values
|
||||
if (cmp0048 == cmPolicies::OLD || cmp0048 == cmPolicies::WARN) {
|
||||
this->Makefile->IssueMessage(
|
||||
cmake::FATAL_ERROR,
|
||||
MessageType::FATAL_ERROR,
|
||||
"VERSION not allowed unless CMP0048 is set to NEW");
|
||||
cmSystemTools::SetFatalErrorOccured();
|
||||
return true;
|
||||
@@ -214,7 +217,7 @@ bool cmProjectCommand::InitialPass(std::vector<std::string> const& args,
|
||||
"^([0-9]+(\\.[0-9]+(\\.[0-9]+(\\.[0-9]+)?)?)?)?$");
|
||||
if (!vx.find(version)) {
|
||||
std::string e = "VERSION \"" + version + "\" format invalid.";
|
||||
this->Makefile->IssueMessage(cmake::FATAL_ERROR, e);
|
||||
this->Makefile->IssueMessage(MessageType::FATAL_ERROR, e);
|
||||
cmSystemTools::SetFatalErrorOccured();
|
||||
return true;
|
||||
}
|
||||
@@ -296,7 +299,7 @@ bool cmProjectCommand::InitialPass(std::vector<std::string> const& args,
|
||||
std::ostringstream w;
|
||||
w << cmPolicies::GetPolicyWarning(cmPolicies::CMP0048)
|
||||
<< "\nThe following variable(s) would be set to empty:" << vw;
|
||||
this->Makefile->IssueMessage(cmake::AUTHOR_WARNING, w.str());
|
||||
this->Makefile->IssueMessage(MessageType::AUTHOR_WARNING, w.str());
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
@@ -9,11 +9,11 @@
|
||||
#include "cmGeneratorTarget.h"
|
||||
#include "cmLocalGenerator.h"
|
||||
#include "cmMakefile.h"
|
||||
#include "cmMessageType.h"
|
||||
#include "cmState.h"
|
||||
#include "cmStateTypes.h"
|
||||
#include "cmSystemTools.h"
|
||||
#include "cmTarget.h"
|
||||
#include "cmake.h"
|
||||
|
||||
#include <memory>
|
||||
#include <utility>
|
||||
@@ -122,7 +122,7 @@ cmQtAutoGenGlobalInitializer::cmQtAutoGenGlobalInitializer(
|
||||
msg += " find_package(Qt5 COMPONENTS Core)\n";
|
||||
}
|
||||
msg += "to your CMakeLists.txt file.";
|
||||
target->Makefile->IssueMessage(cmake::AUTHOR_WARNING, msg);
|
||||
target->Makefile->IssueMessage(MessageType::AUTHOR_WARNING, msg);
|
||||
}
|
||||
if (mocIsValid || uicIsValid || rccIsValid) {
|
||||
// Create autogen target initializer
|
||||
|
||||
@@ -16,6 +16,7 @@
|
||||
#include "cmListFileCache.h"
|
||||
#include "cmLocalGenerator.h"
|
||||
#include "cmMakefile.h"
|
||||
#include "cmMessageType.h"
|
||||
#include "cmOutputConverter.h"
|
||||
#include "cmPolicies.h"
|
||||
#include "cmProcessOutput.h"
|
||||
@@ -842,7 +843,7 @@ bool cmQtAutoGenInitializer::InitScanFiles()
|
||||
msg += ":\n set_property(SOURCE file.h PROPERTY ";
|
||||
msg += property;
|
||||
msg += " ON)\n";
|
||||
makefile->IssueMessage(cmake::AUTHOR_WARNING, msg);
|
||||
makefile->IssueMessage(MessageType::AUTHOR_WARNING, msg);
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
@@ -7,6 +7,7 @@
|
||||
#include "cmCustomCommand.h"
|
||||
#include "cmGlobalGenerator.h"
|
||||
#include "cmMakefile.h"
|
||||
#include "cmMessageType.h"
|
||||
#include "cmProperty.h"
|
||||
#include "cmState.h"
|
||||
#include "cmSystemTools.h"
|
||||
@@ -179,7 +180,8 @@ bool cmSourceFile::FindFullPath(std::string* error)
|
||||
if (error) {
|
||||
*error = e.str();
|
||||
} else {
|
||||
this->Location.GetMakefile()->IssueMessage(cmake::FATAL_ERROR, e.str());
|
||||
this->Location.GetMakefile()->IssueMessage(MessageType::FATAL_ERROR,
|
||||
e.str());
|
||||
}
|
||||
this->FindFullPathFailed = true;
|
||||
return false;
|
||||
|
||||
@@ -5,6 +5,7 @@
|
||||
#include "cmAlgorithms.h"
|
||||
#include "cmGlobalGenerator.h"
|
||||
#include "cmMakefile.h"
|
||||
#include "cmMessageType.h"
|
||||
#include "cmSystemTools.h"
|
||||
#include "cmake.h"
|
||||
|
||||
@@ -194,7 +195,7 @@ bool cmSourceFileLocation::Matches(cmSourceFileLocation const& loc)
|
||||
// This can occur when referencing a source file from a different
|
||||
// directory. This is not yet allowed.
|
||||
this->Makefile->IssueMessage(
|
||||
cmake::INTERNAL_ERROR,
|
||||
MessageType::INTERNAL_ERROR,
|
||||
"Matches error: Each side has a directory relative to a different "
|
||||
"location. This can occur when referencing a source file from a "
|
||||
"different directory. This is not yet allowed.");
|
||||
|
||||
+24
-23
@@ -17,6 +17,7 @@
|
||||
#include "cmGlobalGenerator.h"
|
||||
#include "cmListFileCache.h"
|
||||
#include "cmMakefile.h"
|
||||
#include "cmMessageType.h"
|
||||
#include "cmMessenger.h"
|
||||
#include "cmOutputConverter.h"
|
||||
#include "cmProperty.h"
|
||||
@@ -99,7 +100,7 @@ const char* cmTargetPropertyComputer::GetSources<cmTarget>(
|
||||
bool addContent = false;
|
||||
bool noMessage = true;
|
||||
std::ostringstream e;
|
||||
cmake::MessageType messageType = cmake::AUTHOR_WARNING;
|
||||
MessageType messageType = MessageType::AUTHOR_WARNING;
|
||||
switch (context.GetBottom().GetPolicy(cmPolicies::CMP0051)) {
|
||||
case cmPolicies::WARN:
|
||||
e << cmPolicies::GetPolicyWarning(cmPolicies::CMP0051) << "\n";
|
||||
@@ -570,7 +571,7 @@ std::string cmTarget::ProcessSourceItemCMP0049(const std::string& s)
|
||||
if (src != s) {
|
||||
std::ostringstream e;
|
||||
bool noMessage = false;
|
||||
cmake::MessageType messageType = cmake::AUTHOR_WARNING;
|
||||
MessageType messageType = MessageType::AUTHOR_WARNING;
|
||||
switch (this->Makefile->GetPolicyStatus(cmPolicies::CMP0049)) {
|
||||
case cmPolicies::WARN:
|
||||
e << cmPolicies::GetPolicyWarning(cmPolicies::CMP0049) << "\n";
|
||||
@@ -581,7 +582,7 @@ std::string cmTarget::ProcessSourceItemCMP0049(const std::string& s)
|
||||
case cmPolicies::REQUIRED_ALWAYS:
|
||||
case cmPolicies::REQUIRED_IF_USED:
|
||||
case cmPolicies::NEW:
|
||||
messageType = cmake::FATAL_ERROR;
|
||||
messageType = MessageType::FATAL_ERROR;
|
||||
}
|
||||
if (!noMessage) {
|
||||
e << "Legacy variable expansion in source file \"" << s
|
||||
@@ -589,7 +590,7 @@ std::string cmTarget::ProcessSourceItemCMP0049(const std::string& s)
|
||||
<< "\". This behavior will be removed in a "
|
||||
"future version of CMake.";
|
||||
this->Makefile->IssueMessage(messageType, e.str());
|
||||
if (messageType == cmake::FATAL_ERROR) {
|
||||
if (messageType == MessageType::FATAL_ERROR) {
|
||||
return "";
|
||||
}
|
||||
}
|
||||
@@ -933,40 +934,40 @@ void cmTarget::SetProperty(const std::string& prop, const char* value)
|
||||
if (prop == propMANUALLY_ADDED_DEPENDENCIES) {
|
||||
std::ostringstream e;
|
||||
e << "MANUALLY_ADDED_DEPENDENCIES property is read-only\n";
|
||||
this->Makefile->IssueMessage(cmake::FATAL_ERROR, e.str());
|
||||
this->Makefile->IssueMessage(MessageType::FATAL_ERROR, e.str());
|
||||
return;
|
||||
}
|
||||
if (prop == propNAME) {
|
||||
std::ostringstream e;
|
||||
e << "NAME property is read-only\n";
|
||||
this->Makefile->IssueMessage(cmake::FATAL_ERROR, e.str());
|
||||
this->Makefile->IssueMessage(MessageType::FATAL_ERROR, e.str());
|
||||
return;
|
||||
}
|
||||
if (prop == propTYPE) {
|
||||
std::ostringstream e;
|
||||
e << "TYPE property is read-only\n";
|
||||
this->Makefile->IssueMessage(cmake::FATAL_ERROR, e.str());
|
||||
this->Makefile->IssueMessage(MessageType::FATAL_ERROR, e.str());
|
||||
return;
|
||||
}
|
||||
if (prop == propEXPORT_NAME && this->IsImported()) {
|
||||
std::ostringstream e;
|
||||
e << "EXPORT_NAME property can't be set on imported targets (\""
|
||||
<< this->Name << "\")\n";
|
||||
this->Makefile->IssueMessage(cmake::FATAL_ERROR, e.str());
|
||||
this->Makefile->IssueMessage(MessageType::FATAL_ERROR, e.str());
|
||||
return;
|
||||
}
|
||||
if (prop == propSOURCES && this->IsImported()) {
|
||||
std::ostringstream e;
|
||||
e << "SOURCES property can't be set on imported targets (\"" << this->Name
|
||||
<< "\")\n";
|
||||
this->Makefile->IssueMessage(cmake::FATAL_ERROR, e.str());
|
||||
this->Makefile->IssueMessage(MessageType::FATAL_ERROR, e.str());
|
||||
return;
|
||||
}
|
||||
if (prop == propIMPORTED_GLOBAL && !this->IsImported()) {
|
||||
std::ostringstream e;
|
||||
e << "IMPORTED_GLOBAL property can't be set on non-imported targets (\""
|
||||
<< this->Name << "\")\n";
|
||||
this->Makefile->IssueMessage(cmake::FATAL_ERROR, e.str());
|
||||
this->Makefile->IssueMessage(MessageType::FATAL_ERROR, e.str());
|
||||
return;
|
||||
}
|
||||
|
||||
@@ -1039,7 +1040,7 @@ void cmTarget::SetProperty(const std::string& prop, const char* value)
|
||||
std::ostringstream e;
|
||||
e << "IMPORTED_GLOBAL property can't be set to FALSE on targets (\""
|
||||
<< this->Name << "\")\n";
|
||||
this->Makefile->IssueMessage(cmake::FATAL_ERROR, e.str());
|
||||
this->Makefile->IssueMessage(MessageType::FATAL_ERROR, e.str());
|
||||
return;
|
||||
}
|
||||
/* no need to change anything if value does not change */
|
||||
@@ -1056,7 +1057,7 @@ void cmTarget::SetProperty(const std::string& prop, const char* value)
|
||||
e << "CUDA_PTX_COMPILATION property can only be applied to OBJECT "
|
||||
"targets (\""
|
||||
<< this->Name << "\")\n";
|
||||
this->Makefile->IssueMessage(cmake::FATAL_ERROR, e.str());
|
||||
this->Makefile->IssueMessage(MessageType::FATAL_ERROR, e.str());
|
||||
return;
|
||||
} else {
|
||||
this->Properties.SetProperty(prop, value);
|
||||
@@ -1074,21 +1075,21 @@ void cmTarget::AppendProperty(const std::string& prop, const char* value,
|
||||
if (prop == "NAME") {
|
||||
std::ostringstream e;
|
||||
e << "NAME property is read-only\n";
|
||||
this->Makefile->IssueMessage(cmake::FATAL_ERROR, e.str());
|
||||
this->Makefile->IssueMessage(MessageType::FATAL_ERROR, e.str());
|
||||
return;
|
||||
}
|
||||
if (prop == "EXPORT_NAME" && this->IsImported()) {
|
||||
std::ostringstream e;
|
||||
e << "EXPORT_NAME property can't be set on imported targets (\""
|
||||
<< this->Name << "\")\n";
|
||||
this->Makefile->IssueMessage(cmake::FATAL_ERROR, e.str());
|
||||
this->Makefile->IssueMessage(MessageType::FATAL_ERROR, e.str());
|
||||
return;
|
||||
}
|
||||
if (prop == "SOURCES" && this->IsImported()) {
|
||||
std::ostringstream e;
|
||||
e << "SOURCES property can't be set on imported targets (\"" << this->Name
|
||||
<< "\")\n";
|
||||
this->Makefile->IssueMessage(cmake::FATAL_ERROR, e.str());
|
||||
this->Makefile->IssueMessage(MessageType::FATAL_ERROR, e.str());
|
||||
return;
|
||||
}
|
||||
if (prop == "IMPORTED_GLOBAL") {
|
||||
@@ -1096,7 +1097,7 @@ void cmTarget::AppendProperty(const std::string& prop, const char* value,
|
||||
e << "IMPORTED_GLOBAL property can't be appended, only set on imported "
|
||||
"targets (\""
|
||||
<< this->Name << "\")\n";
|
||||
this->Makefile->IssueMessage(cmake::FATAL_ERROR, e.str());
|
||||
this->Makefile->IssueMessage(MessageType::FATAL_ERROR, e.str());
|
||||
return;
|
||||
}
|
||||
if (prop == "INCLUDE_DIRECTORIES") {
|
||||
@@ -1146,7 +1147,7 @@ void cmTarget::AppendProperty(const std::string& prop, const char* value,
|
||||
this->Internal->SourceEntries.push_back(value);
|
||||
this->Internal->SourceBacktraces.push_back(lfbt);
|
||||
} else if (cmHasLiteralPrefix(prop, "IMPORTED_LIBNAME")) {
|
||||
this->Makefile->IssueMessage(cmake::FATAL_ERROR,
|
||||
this->Makefile->IssueMessage(MessageType::FATAL_ERROR,
|
||||
prop + " property may not be APPENDed.");
|
||||
} else {
|
||||
this->Properties.AppendProperty(prop, value, asString);
|
||||
@@ -1283,7 +1284,7 @@ static void cmTargetCheckLINK_INTERFACE_LIBRARIES(const std::string& prop,
|
||||
<< "the LINK_INTERFACE_LIBRARIES and LINK_INTERFACE_LIBRARIES_DEBUG "
|
||||
<< "properties accordingly.";
|
||||
}
|
||||
context->IssueMessage(cmake::FATAL_ERROR, e.str());
|
||||
context->IssueMessage(MessageType::FATAL_ERROR, e.str());
|
||||
}
|
||||
|
||||
static void cmTargetCheckINTERFACE_LINK_LIBRARIES(const char* value,
|
||||
@@ -1305,7 +1306,7 @@ static void cmTargetCheckINTERFACE_LINK_LIBRARIES(const char* value,
|
||||
"property may contain configuration-sensitive generator-expressions "
|
||||
"which may be used to specify per-configuration rules.";
|
||||
|
||||
context->IssueMessage(cmake::FATAL_ERROR, e.str());
|
||||
context->IssueMessage(MessageType::FATAL_ERROR, e.str());
|
||||
}
|
||||
|
||||
static void cmTargetCheckIMPORTED_GLOBAL(const cmTarget* target,
|
||||
@@ -1319,7 +1320,7 @@ static void cmTargetCheckIMPORTED_GLOBAL(const cmTarget* target,
|
||||
e << "Attempt to promote imported target \"" << target->GetName()
|
||||
<< "\" to global scope (by setting IMPORTED_GLOBAL) "
|
||||
"which is not built in this directory.";
|
||||
context->IssueMessage(cmake::FATAL_ERROR, e.str());
|
||||
context->IssueMessage(MessageType::FATAL_ERROR, e.str());
|
||||
}
|
||||
}
|
||||
|
||||
@@ -1683,21 +1684,21 @@ bool cmTarget::CheckImportedLibName(std::string const& prop,
|
||||
if (this->GetType() != cmStateEnums::INTERFACE_LIBRARY ||
|
||||
!this->IsImported()) {
|
||||
this->Makefile->IssueMessage(
|
||||
cmake::FATAL_ERROR,
|
||||
MessageType::FATAL_ERROR,
|
||||
prop +
|
||||
" property may be set only on imported INTERFACE library targets.");
|
||||
return false;
|
||||
}
|
||||
if (!value.empty()) {
|
||||
if (value[0] == '-') {
|
||||
this->Makefile->IssueMessage(cmake::FATAL_ERROR,
|
||||
this->Makefile->IssueMessage(MessageType::FATAL_ERROR,
|
||||
prop + " property value\n " + value +
|
||||
"\nmay not start with '-'.");
|
||||
return false;
|
||||
}
|
||||
std::string::size_type bad = value.find_first_of(":/\\;");
|
||||
if (bad != std::string::npos) {
|
||||
this->Makefile->IssueMessage(cmake::FATAL_ERROR,
|
||||
this->Makefile->IssueMessage(MessageType::FATAL_ERROR,
|
||||
prop + " property value\n " + value +
|
||||
"\nmay not contain '" +
|
||||
value.substr(bad, 1) + "'.");
|
||||
|
||||
@@ -6,8 +6,8 @@
|
||||
|
||||
#include "cmAlgorithms.h"
|
||||
#include "cmMakefile.h"
|
||||
#include "cmMessageType.h"
|
||||
#include "cmTarget.h"
|
||||
#include "cmake.h"
|
||||
|
||||
class cmExecutionStatus;
|
||||
|
||||
@@ -24,7 +24,7 @@ void cmTargetCompileDefinitionsCommand::HandleMissingTarget(
|
||||
e << "Cannot specify compile definitions for target \"" << name
|
||||
<< "\" "
|
||||
"which is not built by this project.";
|
||||
this->Makefile->IssueMessage(cmake::FATAL_ERROR, e.str());
|
||||
this->Makefile->IssueMessage(MessageType::FATAL_ERROR, e.str());
|
||||
}
|
||||
|
||||
std::string cmTargetCompileDefinitionsCommand::Join(
|
||||
|
||||
@@ -6,7 +6,7 @@
|
||||
|
||||
#include "cmAlgorithms.h"
|
||||
#include "cmMakefile.h"
|
||||
#include "cmake.h"
|
||||
#include "cmMessageType.h"
|
||||
|
||||
class cmExecutionStatus;
|
||||
class cmTarget;
|
||||
@@ -24,7 +24,7 @@ void cmTargetCompileFeaturesCommand::HandleMissingTarget(
|
||||
e << "Cannot specify compile features for target \"" << name
|
||||
<< "\" "
|
||||
"which is not built by this project.";
|
||||
this->Makefile->IssueMessage(cmake::FATAL_ERROR, e.str());
|
||||
this->Makefile->IssueMessage(MessageType::FATAL_ERROR, e.str());
|
||||
}
|
||||
|
||||
std::string cmTargetCompileFeaturesCommand::Join(
|
||||
|
||||
@@ -7,8 +7,8 @@
|
||||
#include "cmAlgorithms.h"
|
||||
#include "cmListFileCache.h"
|
||||
#include "cmMakefile.h"
|
||||
#include "cmMessageType.h"
|
||||
#include "cmTarget.h"
|
||||
#include "cmake.h"
|
||||
|
||||
class cmExecutionStatus;
|
||||
|
||||
@@ -24,7 +24,7 @@ void cmTargetCompileOptionsCommand::HandleMissingTarget(
|
||||
std::ostringstream e;
|
||||
e << "Cannot specify compile options for target \"" << name
|
||||
<< "\" which is not built by this project.";
|
||||
this->Makefile->IssueMessage(cmake::FATAL_ERROR, e.str());
|
||||
this->Makefile->IssueMessage(MessageType::FATAL_ERROR, e.str());
|
||||
}
|
||||
|
||||
std::string cmTargetCompileOptionsCommand::Join(
|
||||
|
||||
@@ -8,9 +8,9 @@
|
||||
#include "cmGeneratorExpression.h"
|
||||
#include "cmListFileCache.h"
|
||||
#include "cmMakefile.h"
|
||||
#include "cmMessageType.h"
|
||||
#include "cmSystemTools.h"
|
||||
#include "cmTarget.h"
|
||||
#include "cmake.h"
|
||||
|
||||
class cmExecutionStatus;
|
||||
|
||||
@@ -27,7 +27,7 @@ void cmTargetIncludeDirectoriesCommand::HandleMissingTarget(
|
||||
std::ostringstream e;
|
||||
e << "Cannot specify include directories for target \"" << name
|
||||
<< "\" which is not built by this project.";
|
||||
this->Makefile->IssueMessage(cmake::FATAL_ERROR, e.str());
|
||||
this->Makefile->IssueMessage(MessageType::FATAL_ERROR, e.str());
|
||||
}
|
||||
|
||||
std::string cmTargetIncludeDirectoriesCommand::Join(
|
||||
|
||||
@@ -8,9 +8,9 @@
|
||||
#include "cmGeneratorExpression.h"
|
||||
#include "cmListFileCache.h"
|
||||
#include "cmMakefile.h"
|
||||
#include "cmMessageType.h"
|
||||
#include "cmSystemTools.h"
|
||||
#include "cmTarget.h"
|
||||
#include "cmake.h"
|
||||
|
||||
class cmExecutionStatus;
|
||||
|
||||
@@ -26,7 +26,7 @@ void cmTargetLinkDirectoriesCommand::HandleMissingTarget(
|
||||
std::ostringstream e;
|
||||
e << "Cannot specify link directories for target \"" << name
|
||||
<< "\" which is not built by this project.";
|
||||
this->Makefile->IssueMessage(cmake::FATAL_ERROR, e.str());
|
||||
this->Makefile->IssueMessage(MessageType::FATAL_ERROR, e.str());
|
||||
}
|
||||
|
||||
std::string cmTargetLinkDirectoriesCommand::Join(
|
||||
|
||||
@@ -8,6 +8,7 @@
|
||||
#include "cmGeneratorExpression.h"
|
||||
#include "cmGlobalGenerator.h"
|
||||
#include "cmMakefile.h"
|
||||
#include "cmMessageType.h"
|
||||
#include "cmPolicies.h"
|
||||
#include "cmState.h"
|
||||
#include "cmStateTypes.h"
|
||||
@@ -51,7 +52,7 @@ bool cmTargetLinkLibrariesCommand::InitialPass(
|
||||
}
|
||||
}
|
||||
if (!this->Target) {
|
||||
cmake::MessageType t = cmake::FATAL_ERROR; // fail by default
|
||||
MessageType t = MessageType::FATAL_ERROR; // fail by default
|
||||
std::ostringstream e;
|
||||
e << "Cannot specify link libraries for target \"" << args[0] << "\" "
|
||||
<< "which is not built by this project.";
|
||||
@@ -60,7 +61,7 @@ bool cmTargetLinkLibrariesCommand::InitialPass(
|
||||
if (args.size() < 2) {
|
||||
switch (this->Makefile->GetPolicyStatus(cmPolicies::CMP0016)) {
|
||||
case cmPolicies::WARN:
|
||||
t = cmake::AUTHOR_WARNING;
|
||||
t = MessageType::AUTHOR_WARNING;
|
||||
// Print the warning.
|
||||
e << "\n"
|
||||
<< "CMake does not support this but it used to work accidentally "
|
||||
@@ -69,7 +70,7 @@ bool cmTargetLinkLibrariesCommand::InitialPass(
|
||||
<< cmPolicies::GetPolicyWarning(cmPolicies::CMP0016);
|
||||
break;
|
||||
case cmPolicies::OLD: // OLD behavior does not warn.
|
||||
t = cmake::MESSAGE;
|
||||
t = MessageType::MESSAGE;
|
||||
break;
|
||||
case cmPolicies::REQUIRED_IF_USED:
|
||||
case cmPolicies::REQUIRED_ALWAYS:
|
||||
@@ -81,11 +82,11 @@ bool cmTargetLinkLibrariesCommand::InitialPass(
|
||||
}
|
||||
// Now actually print the message.
|
||||
switch (t) {
|
||||
case cmake::AUTHOR_WARNING:
|
||||
this->Makefile->IssueMessage(cmake::AUTHOR_WARNING, e.str());
|
||||
case MessageType::AUTHOR_WARNING:
|
||||
this->Makefile->IssueMessage(MessageType::AUTHOR_WARNING, e.str());
|
||||
break;
|
||||
case cmake::FATAL_ERROR:
|
||||
this->Makefile->IssueMessage(cmake::FATAL_ERROR, e.str());
|
||||
case MessageType::FATAL_ERROR:
|
||||
this->Makefile->IssueMessage(MessageType::FATAL_ERROR, e.str());
|
||||
cmSystemTools::SetFatalErrorOccured();
|
||||
break;
|
||||
default:
|
||||
@@ -98,7 +99,7 @@ bool cmTargetLinkLibrariesCommand::InitialPass(
|
||||
if (this->Target->GetType() == cmStateEnums::UTILITY) {
|
||||
std::ostringstream e;
|
||||
const char* modal = nullptr;
|
||||
cmake::MessageType messageType = cmake::AUTHOR_WARNING;
|
||||
MessageType messageType = MessageType::AUTHOR_WARNING;
|
||||
switch (this->Makefile->GetPolicyStatus(cmPolicies::CMP0039)) {
|
||||
case cmPolicies::WARN:
|
||||
e << cmPolicies::GetPolicyWarning(cmPolicies::CMP0039) << "\n";
|
||||
@@ -109,13 +110,13 @@ bool cmTargetLinkLibrariesCommand::InitialPass(
|
||||
case cmPolicies::REQUIRED_IF_USED:
|
||||
case cmPolicies::NEW:
|
||||
modal = "must";
|
||||
messageType = cmake::FATAL_ERROR;
|
||||
messageType = MessageType::FATAL_ERROR;
|
||||
}
|
||||
if (modal) {
|
||||
e << "Utility target \"" << this->Target->GetName() << "\" " << modal
|
||||
<< " not be used as the target of a target_link_libraries call.";
|
||||
this->Makefile->IssueMessage(messageType, e.str());
|
||||
if (messageType == cmake::FATAL_ERROR) {
|
||||
if (messageType == MessageType::FATAL_ERROR) {
|
||||
return false;
|
||||
}
|
||||
}
|
||||
@@ -141,7 +142,7 @@ bool cmTargetLinkLibrariesCommand::InitialPass(
|
||||
this->CurrentProcessingState = ProcessingPlainLinkInterface;
|
||||
if (i != 1) {
|
||||
this->Makefile->IssueMessage(
|
||||
cmake::FATAL_ERROR,
|
||||
MessageType::FATAL_ERROR,
|
||||
"The LINK_INTERFACE_LIBRARIES option must appear as the second "
|
||||
"argument, just after the target name.");
|
||||
return true;
|
||||
@@ -152,7 +153,7 @@ bool cmTargetLinkLibrariesCommand::InitialPass(
|
||||
this->CurrentProcessingState != ProcessingKeywordPublicInterface &&
|
||||
this->CurrentProcessingState != ProcessingKeywordLinkInterface) {
|
||||
this->Makefile->IssueMessage(
|
||||
cmake::FATAL_ERROR,
|
||||
MessageType::FATAL_ERROR,
|
||||
"The INTERFACE, PUBLIC or PRIVATE option must appear as the second "
|
||||
"argument, just after the target name.");
|
||||
return true;
|
||||
@@ -163,7 +164,7 @@ bool cmTargetLinkLibrariesCommand::InitialPass(
|
||||
this->CurrentProcessingState != ProcessingPlainPrivateInterface &&
|
||||
this->CurrentProcessingState != ProcessingPlainPublicInterface) {
|
||||
this->Makefile->IssueMessage(
|
||||
cmake::FATAL_ERROR,
|
||||
MessageType::FATAL_ERROR,
|
||||
"The LINK_PUBLIC or LINK_PRIVATE option must appear as the second "
|
||||
"argument, just after the target name.");
|
||||
return true;
|
||||
@@ -175,7 +176,7 @@ bool cmTargetLinkLibrariesCommand::InitialPass(
|
||||
this->CurrentProcessingState != ProcessingKeywordPublicInterface &&
|
||||
this->CurrentProcessingState != ProcessingKeywordLinkInterface) {
|
||||
this->Makefile->IssueMessage(
|
||||
cmake::FATAL_ERROR,
|
||||
MessageType::FATAL_ERROR,
|
||||
"The INTERFACE, PUBLIC or PRIVATE option must appear as the second "
|
||||
"argument, just after the target name.");
|
||||
return true;
|
||||
@@ -186,7 +187,7 @@ bool cmTargetLinkLibrariesCommand::InitialPass(
|
||||
this->CurrentProcessingState != ProcessingPlainPublicInterface &&
|
||||
this->CurrentProcessingState != ProcessingPlainPrivateInterface) {
|
||||
this->Makefile->IssueMessage(
|
||||
cmake::FATAL_ERROR,
|
||||
MessageType::FATAL_ERROR,
|
||||
"The LINK_PUBLIC or LINK_PRIVATE option must appear as the second "
|
||||
"argument, just after the target name.");
|
||||
return true;
|
||||
@@ -198,7 +199,7 @@ bool cmTargetLinkLibrariesCommand::InitialPass(
|
||||
this->CurrentProcessingState != ProcessingKeywordPublicInterface &&
|
||||
this->CurrentProcessingState != ProcessingKeywordLinkInterface) {
|
||||
this->Makefile->IssueMessage(
|
||||
cmake::FATAL_ERROR,
|
||||
MessageType::FATAL_ERROR,
|
||||
"The INTERFACE, PUBLIC or PRIVATE option must appear as the second "
|
||||
"argument, just after the target name.");
|
||||
return true;
|
||||
@@ -258,7 +259,7 @@ bool cmTargetLinkLibrariesCommand::InitialPass(
|
||||
std::ostringstream e;
|
||||
e << "The \"" << cmTargetLinkLibrariesCommand::LinkLibraryTypeNames[llt]
|
||||
<< "\" argument must be followed by a library.";
|
||||
this->Makefile->IssueMessage(cmake::FATAL_ERROR, e.str());
|
||||
this->Makefile->IssueMessage(MessageType::FATAL_ERROR, e.str());
|
||||
cmSystemTools::SetFatalErrorOccured();
|
||||
}
|
||||
|
||||
@@ -290,7 +291,7 @@ void cmTargetLinkLibrariesCommand::LinkLibraryTypeSpecifierWarning(int left,
|
||||
<< cmTargetLinkLibrariesCommand::LinkLibraryTypeNames[right]
|
||||
<< "\" instead of a library name. "
|
||||
<< "The first specifier will be ignored.";
|
||||
this->Makefile->IssueMessage(cmake::AUTHOR_WARNING, w.str());
|
||||
this->Makefile->IssueMessage(MessageType::AUTHOR_WARNING, w.str());
|
||||
}
|
||||
|
||||
bool cmTargetLinkLibrariesCommand::HandleLibrary(const std::string& lib,
|
||||
@@ -299,7 +300,7 @@ bool cmTargetLinkLibrariesCommand::HandleLibrary(const std::string& lib,
|
||||
if (this->Target->GetType() == cmStateEnums::INTERFACE_LIBRARY &&
|
||||
this->CurrentProcessingState != ProcessingKeywordLinkInterface) {
|
||||
this->Makefile->IssueMessage(
|
||||
cmake::FATAL_ERROR,
|
||||
MessageType::FATAL_ERROR,
|
||||
"INTERFACE library can only be used with the INTERFACE keyword of "
|
||||
"target_link_libraries");
|
||||
return false;
|
||||
@@ -307,7 +308,7 @@ bool cmTargetLinkLibrariesCommand::HandleLibrary(const std::string& lib,
|
||||
if (this->Target->IsImported() &&
|
||||
this->CurrentProcessingState != ProcessingKeywordLinkInterface) {
|
||||
this->Makefile->IssueMessage(
|
||||
cmake::FATAL_ERROR,
|
||||
MessageType::FATAL_ERROR,
|
||||
"IMPORTED library can only be used with the INTERFACE keyword of "
|
||||
"target_link_libraries");
|
||||
return false;
|
||||
@@ -325,7 +326,7 @@ bool cmTargetLinkLibrariesCommand::HandleLibrary(const std::string& lib,
|
||||
sig, this->Makefile->GetExecutionContext())) {
|
||||
std::ostringstream e;
|
||||
const char* modal = nullptr;
|
||||
cmake::MessageType messageType = cmake::AUTHOR_WARNING;
|
||||
MessageType messageType = MessageType::AUTHOR_WARNING;
|
||||
switch (this->Makefile->GetPolicyStatus(cmPolicies::CMP0023)) {
|
||||
case cmPolicies::WARN:
|
||||
e << cmPolicies::GetPolicyWarning(cmPolicies::CMP0023) << "\n";
|
||||
@@ -336,7 +337,7 @@ bool cmTargetLinkLibrariesCommand::HandleLibrary(const std::string& lib,
|
||||
case cmPolicies::REQUIRED_IF_USED:
|
||||
case cmPolicies::NEW:
|
||||
modal = "must";
|
||||
messageType = cmake::FATAL_ERROR;
|
||||
messageType = MessageType::FATAL_ERROR;
|
||||
}
|
||||
|
||||
if (modal) {
|
||||
@@ -355,7 +356,7 @@ bool cmTargetLinkLibrariesCommand::HandleLibrary(const std::string& lib,
|
||||
? cmTarget::PlainTLLSignature
|
||||
: cmTarget::KeywordTLLSignature);
|
||||
this->Makefile->IssueMessage(messageType, e.str());
|
||||
if (messageType == cmake::FATAL_ERROR) {
|
||||
if (messageType == MessageType::FATAL_ERROR) {
|
||||
return false;
|
||||
}
|
||||
}
|
||||
@@ -408,7 +409,7 @@ bool cmTargetLinkLibrariesCommand::HandleLibrary(const std::string& lib,
|
||||
<< this->Target->GetName()
|
||||
<< "\" which is not built in this directory.\n"
|
||||
<< "This is allowed only when policy CMP0079 is set to NEW.";
|
||||
this->Makefile->IssueMessage(cmake::FATAL_ERROR, e.str());
|
||||
this->Makefile->IssueMessage(MessageType::FATAL_ERROR, e.str());
|
||||
return false;
|
||||
}
|
||||
|
||||
@@ -426,7 +427,7 @@ bool cmTargetLinkLibrariesCommand::HandleLibrary(const std::string& lib,
|
||||
<< " may not be linked into another target. One may link only to "
|
||||
"INTERFACE, OBJECT, STATIC or SHARED libraries, or to executables "
|
||||
"with the ENABLE_EXPORTS property set.";
|
||||
this->Makefile->IssueMessage(cmake::FATAL_ERROR, e.str());
|
||||
this->Makefile->IssueMessage(MessageType::FATAL_ERROR, e.str());
|
||||
}
|
||||
|
||||
this->Target->AddLinkLibrary(*this->Makefile, lib, libRef, llt);
|
||||
@@ -442,7 +443,7 @@ bool cmTargetLinkLibrariesCommand::HandleLibrary(const std::string& lib,
|
||||
"which the target was created rather than in this calling "
|
||||
"directory.";
|
||||
/* clang-format on */
|
||||
this->Makefile->IssueMessage(cmake::AUTHOR_WARNING, w.str());
|
||||
this->Makefile->IssueMessage(MessageType::AUTHOR_WARNING, w.str());
|
||||
}
|
||||
|
||||
// Handle (additional) case where the command was called with PRIVATE /
|
||||
|
||||
@@ -7,8 +7,8 @@
|
||||
#include "cmAlgorithms.h"
|
||||
#include "cmListFileCache.h"
|
||||
#include "cmMakefile.h"
|
||||
#include "cmMessageType.h"
|
||||
#include "cmTarget.h"
|
||||
#include "cmake.h"
|
||||
|
||||
class cmExecutionStatus;
|
||||
|
||||
@@ -23,7 +23,7 @@ void cmTargetLinkOptionsCommand::HandleMissingTarget(const std::string& name)
|
||||
std::ostringstream e;
|
||||
e << "Cannot specify link options for target \"" << name
|
||||
<< "\" which is not built by this project.";
|
||||
this->Makefile->IssueMessage(cmake::FATAL_ERROR, e.str());
|
||||
this->Makefile->IssueMessage(MessageType::FATAL_ERROR, e.str());
|
||||
}
|
||||
|
||||
std::string cmTargetLinkOptionsCommand::Join(
|
||||
|
||||
@@ -7,10 +7,10 @@
|
||||
#include <sstream>
|
||||
#include <unordered_set>
|
||||
|
||||
#include "cmMessageType.h"
|
||||
#include "cmMessenger.h"
|
||||
#include "cmPolicies.h"
|
||||
#include "cmStateSnapshot.h"
|
||||
#include "cmake.h"
|
||||
|
||||
bool cmTargetPropertyComputer::HandleLocationPropertyPolicy(
|
||||
std::string const& tgtName, cmMessenger* messenger,
|
||||
@@ -18,7 +18,7 @@ bool cmTargetPropertyComputer::HandleLocationPropertyPolicy(
|
||||
{
|
||||
std::ostringstream e;
|
||||
const char* modal = nullptr;
|
||||
cmake::MessageType messageType = cmake::AUTHOR_WARNING;
|
||||
MessageType messageType = MessageType::AUTHOR_WARNING;
|
||||
switch (context.GetBottom().GetPolicy(cmPolicies::CMP0026)) {
|
||||
case cmPolicies::WARN:
|
||||
e << cmPolicies::GetPolicyWarning(cmPolicies::CMP0026) << "\n";
|
||||
@@ -29,7 +29,7 @@ bool cmTargetPropertyComputer::HandleLocationPropertyPolicy(
|
||||
case cmPolicies::REQUIRED_IF_USED:
|
||||
case cmPolicies::NEW:
|
||||
modal = "may";
|
||||
messageType = cmake::FATAL_ERROR;
|
||||
messageType = MessageType::FATAL_ERROR;
|
||||
}
|
||||
|
||||
if (modal) {
|
||||
@@ -41,7 +41,7 @@ bool cmTargetPropertyComputer::HandleLocationPropertyPolicy(
|
||||
messenger->IssueMessage(messageType, e.str(), context);
|
||||
}
|
||||
|
||||
return messageType != cmake::FATAL_ERROR;
|
||||
return messageType != MessageType::FATAL_ERROR;
|
||||
}
|
||||
|
||||
bool cmTargetPropertyComputer::WhiteListedInterfaceProperty(
|
||||
@@ -101,7 +101,7 @@ bool cmTargetPropertyComputer::PassesWhitelist(
|
||||
e << "INTERFACE_LIBRARY targets may only have whitelisted properties. "
|
||||
"The property \""
|
||||
<< prop << "\" is not allowed.";
|
||||
messenger->IssueMessage(cmake::FATAL_ERROR, e.str(), context);
|
||||
messenger->IssueMessage(MessageType::FATAL_ERROR, e.str(), context);
|
||||
return false;
|
||||
}
|
||||
return true;
|
||||
|
||||
@@ -7,10 +7,10 @@
|
||||
#include "cmAlgorithms.h"
|
||||
#include "cmGeneratorExpression.h"
|
||||
#include "cmMakefile.h"
|
||||
#include "cmMessageType.h"
|
||||
#include "cmPolicies.h"
|
||||
#include "cmSystemTools.h"
|
||||
#include "cmTarget.h"
|
||||
#include "cmake.h"
|
||||
|
||||
class cmExecutionStatus;
|
||||
|
||||
@@ -34,7 +34,7 @@ void cmTargetSourcesCommand::HandleMissingTarget(const std::string& name)
|
||||
e << "Cannot specify sources for target \"" << name
|
||||
<< "\" "
|
||||
"which is not built by this project.";
|
||||
this->Makefile->IssueMessage(cmake::FATAL_ERROR, e.str());
|
||||
this->Makefile->IssueMessage(MessageType::FATAL_ERROR, e.str());
|
||||
}
|
||||
|
||||
std::string cmTargetSourcesCommand::Join(
|
||||
@@ -99,7 +99,7 @@ std::vector<std::string> cmTargetSourcesCommand::ConvertToAbsoluteContent(
|
||||
case cmPolicies::REQUIRED_ALWAYS:
|
||||
case cmPolicies::REQUIRED_IF_USED:
|
||||
this->Makefile->IssueMessage(
|
||||
cmake::FATAL_ERROR,
|
||||
MessageType::FATAL_ERROR,
|
||||
cmPolicies::GetRequiredPolicyError(cmPolicies::CMP0076));
|
||||
break;
|
||||
case cmPolicies::NEW: {
|
||||
@@ -117,7 +117,7 @@ std::vector<std::string> cmTargetSourcesCommand::ConvertToAbsoluteContent(
|
||||
e << "A private source from a directory other than that of target \""
|
||||
<< tgt->GetName() << "\" has a relative path.";
|
||||
}
|
||||
this->Makefile->IssueMessage(cmake::AUTHOR_WARNING, e.str());
|
||||
this->Makefile->IssueMessage(MessageType::AUTHOR_WARNING, e.str());
|
||||
}
|
||||
|
||||
return useAbsoluteContent ? absoluteContent : content;
|
||||
|
||||
@@ -3,6 +3,7 @@
|
||||
#include "cmTryCompileCommand.h"
|
||||
|
||||
#include "cmMakefile.h"
|
||||
#include "cmMessageType.h"
|
||||
#include "cmake.h"
|
||||
|
||||
class cmExecutionStatus;
|
||||
@@ -18,7 +19,7 @@ bool cmTryCompileCommand::InitialPass(std::vector<std::string> const& argv,
|
||||
if (this->Makefile->GetCMakeInstance()->GetWorkingMode() ==
|
||||
cmake::FIND_PACKAGE_MODE) {
|
||||
this->Makefile->IssueMessage(
|
||||
cmake::FATAL_ERROR,
|
||||
MessageType::FATAL_ERROR,
|
||||
"The TRY_COMPILE() command is not supported in --find-package mode.");
|
||||
return false;
|
||||
}
|
||||
|
||||
@@ -7,6 +7,7 @@
|
||||
|
||||
#include "cmDuration.h"
|
||||
#include "cmMakefile.h"
|
||||
#include "cmMessageType.h"
|
||||
#include "cmState.h"
|
||||
#include "cmStateTypes.h"
|
||||
#include "cmSystemTools.h"
|
||||
@@ -25,7 +26,7 @@ bool cmTryRunCommand::InitialPass(std::vector<std::string> const& argv,
|
||||
if (this->Makefile->GetCMakeInstance()->GetWorkingMode() ==
|
||||
cmake::FIND_PACKAGE_MODE) {
|
||||
this->Makefile->IssueMessage(
|
||||
cmake::FATAL_ERROR,
|
||||
MessageType::FATAL_ERROR,
|
||||
"The TRY_RUN() command is not supported in --find-package mode.");
|
||||
return false;
|
||||
}
|
||||
|
||||
Some files were not shown because too many files have changed in this diff Show More
Reference in New Issue
Block a user