mirror of
https://gitlab.kitware.com/cmake/cmake.git
synced 2026-09-25 04:09:36 +03:00
Diagnostics: Add POLICY, EXPERIMENTAL
Add new diagnostic categories CMD_POLICY and CMD_EXPERIMENTAL, both as children of CMD_AUTHOR. Use the former when issuing policy warnings. Use the latter when issuing experimental feature warnings.
This commit is contained in:
committed by
Brad King
parent
92e0ca9046
commit
028d3183ad
@@ -0,0 +1,10 @@
|
||||
CMD_EXPERIMENTAL
|
||||
----------------
|
||||
|
||||
.. diagnostic::
|
||||
:default: warn
|
||||
:parent: CMD_AUTHOR
|
||||
|
||||
Warn if a build system uses an experimental feature, or if CMake detects
|
||||
that the gate variable for an experimental feature is set to an unrecognized
|
||||
value.
|
||||
@@ -0,0 +1,10 @@
|
||||
CMD_POLICY
|
||||
----------
|
||||
|
||||
.. diagnostic::
|
||||
:default: warn
|
||||
:parent: CMD_AUTHOR
|
||||
|
||||
Warn if a build system potentially depends on the ``OLD`` behavior of a CMake
|
||||
Policy. See the :command:`cmake_policy` command for more details. Setting a
|
||||
policy to ``OLD`` will also disable warnings for that specific policy.
|
||||
@@ -88,6 +88,8 @@ The following categories are defined:
|
||||
|
||||
/diagnostic/CMD_AUTHOR
|
||||
/diagnostic/CMD_DEPRECATED
|
||||
/diagnostic/CMD_EXPERIMENTAL
|
||||
/diagnostic/CMD_INSTALL_ABSOLUTE_DESTINATION
|
||||
/diagnostic/CMD_POLICY
|
||||
/diagnostic/CMD_UNINITIALIZED
|
||||
/diagnostic/CMD_UNUSED_CLI
|
||||
|
||||
@@ -32,6 +32,15 @@
|
||||
This may not be set to ``true``
|
||||
if ``warnings.dev`` is set to ``false``.
|
||||
|
||||
.. _`CMakePresets.configurePresets.errors.experimental`:
|
||||
|
||||
``experimental``
|
||||
.. presets-versionadded:: 12
|
||||
|
||||
An optional boolean. Equivalent to passing :cmake-option:`-Werror=experimental` or
|
||||
:cmake-option:`-Wno-error=experimental` on the command line.
|
||||
This may not be set to ``true`` if ``warnings.experimental`` is set to ``false``.
|
||||
|
||||
.. _`CMakePresets.configurePresets.errors.installAbsoluteDestination`:
|
||||
|
||||
``installAbsoluteDestination``
|
||||
@@ -41,6 +50,15 @@
|
||||
:cmake-option:`-Wno-error=install-absolute-destination` on the command line.
|
||||
This may not be set to ``true`` if ``warnings.installAbsoluteDestination`` is set to ``false``.
|
||||
|
||||
.. _`CMakePresets.configurePresets.errors.policy`:
|
||||
|
||||
``policy``
|
||||
.. presets-versionadded:: 12
|
||||
|
||||
An optional boolean. Equivalent to passing :cmake-option:`-Werror=policy` or
|
||||
:cmake-option:`-Wno-error=policy` on the command line.
|
||||
This may not be set to ``true`` if ``warnings.policy`` is set to ``false``.
|
||||
|
||||
.. _`CMakePresets.configurePresets.errors.uninitialized`:
|
||||
|
||||
``uninitialized``
|
||||
|
||||
@@ -1286,9 +1286,15 @@
|
||||
"deprecated": {
|
||||
"$ref": "#/definitions/configurePresets.warnings.deprecated@v1.."
|
||||
},
|
||||
"experimental": {
|
||||
"$ref": "#/definitions/configurePresets.warnings.experimental@v12"
|
||||
},
|
||||
"installAbsoluteDestination": {
|
||||
"$ref": "#/definitions/configurePresets.warnings.installAbsoluteDestination@v12"
|
||||
},
|
||||
"policy": {
|
||||
"$ref": "#/definitions/configurePresets.warnings.policy@v12"
|
||||
},
|
||||
"uninitialized": {
|
||||
"$ref": "#/definitions/configurePresets.warnings.uninitialized@v1.."
|
||||
},
|
||||
@@ -1315,10 +1321,18 @@
|
||||
"type": "boolean",
|
||||
"description": "An optional boolean. Equivalent to passing -Wdev or -Wno-dev on the command line. This may not be set to false if errors.dev is set to true."
|
||||
},
|
||||
"configurePresets.warnings.experimental@v12": {
|
||||
"type": "boolean",
|
||||
"description": "An optional boolean. Equivalent to passing -Wexperimental or -Wno-experimental on the command line. This may not be set to false if errors.experimental is set to true."
|
||||
},
|
||||
"configurePresets.warnings.installAbsoluteDestination@v12": {
|
||||
"type": "boolean",
|
||||
"description": "An optional boolean. Equivalent to passing -Winstall-absolute-destination or -Wno-install-absolute-destination on the command line. This may not be set to false if errors.installAbsoluteDestination is set to true."
|
||||
},
|
||||
"configurePresets.warnings.policy@v12": {
|
||||
"type": "boolean",
|
||||
"description": "An optional boolean. Equivalent to passing -Wpolicy or -Wno-policy on the command line. This may not be set to false if errors.policy is set to true."
|
||||
},
|
||||
"configurePresets.warnings.uninitialized@v1..": {
|
||||
"type": "boolean",
|
||||
"description": "An optional boolean. Equivalent to passing -Wuninitialized or -Wno-uninitialized on the command line. This may not be set to false if errors.uninitialized is set to true."
|
||||
@@ -1371,9 +1385,15 @@
|
||||
"deprecated": {
|
||||
"$ref": "#/definitions/configurePresets.errors.deprecated@v1.."
|
||||
},
|
||||
"experimental": {
|
||||
"$ref": "#/definitions/configurePresets.errors.experimental@v12"
|
||||
},
|
||||
"installAbsoluteDestination": {
|
||||
"$ref": "#/definitions/configurePresets.errors.installAbsoluteDestination@v12"
|
||||
},
|
||||
"policy": {
|
||||
"$ref": "#/definitions/configurePresets.errors.policy@v12"
|
||||
},
|
||||
"uninitialized": {
|
||||
"$ref": "#/definitions/configurePresets.errors.uninitialized@v12"
|
||||
},
|
||||
@@ -1397,10 +1417,18 @@
|
||||
"type": "boolean",
|
||||
"description": "An optional boolean. Equivalent to passing -Werror=dev or -Wno-error=dev on the command line. This may not be set to true if warnings.dev is set to false."
|
||||
},
|
||||
"configurePresets.errors.experimental@v12": {
|
||||
"type": "boolean",
|
||||
"description": "An optional boolean. Equivalent to passing -Werror=experimental or -Wno-error=experimental on the command line. This may not be set to true if warnings.experimental is set to false."
|
||||
},
|
||||
"configurePresets.errors.installAbsoluteDestination@v12": {
|
||||
"type": "boolean",
|
||||
"description": "An optional boolean. Equivalent to passing -Werror=install-absolute-destination or -Wno-error=install-absolute-destination on the command line. This may not be set to true if warnings.installAbsoluteDestination is set to false."
|
||||
},
|
||||
"configurePresets.errors.policy@v12": {
|
||||
"type": "boolean",
|
||||
"description": "An optional boolean. Equivalent to passing -Werror=policy or -Wno-error=policy on the command line. This may not be set to true if warnings.policy is set to false."
|
||||
},
|
||||
"configurePresets.errors.uninitialized@v12": {
|
||||
"type": "boolean",
|
||||
"description": "An optional boolean. Equivalent to passing -Werror=uninitialized or -Wno-error=uninitialized on the command line. This may not be set to true if warnings.uninitialized is set to false."
|
||||
|
||||
@@ -32,6 +32,15 @@
|
||||
This may not be set to ``false``
|
||||
if ``errors.dev`` is set to ``true``.
|
||||
|
||||
.. _`CMakePresets.configurePresets.warnings.experimental`:
|
||||
|
||||
``experimental``
|
||||
.. presets-versionadded:: 12
|
||||
|
||||
An optional boolean. Equivalent to passing :option:`-Wexperimental <cmake -W>` or
|
||||
:option:`-Wno-experimental <cmake -Wno->` on the command line.
|
||||
This may not be set to ``false`` if ``errors.experimental`` is set to ``true``.
|
||||
|
||||
.. _`CMakePresets.configurePresets.warnings.installAbsoluteDestination`:
|
||||
|
||||
``installAbsoluteDestination``
|
||||
@@ -41,6 +50,15 @@
|
||||
:option:`-Wno-install-absolute-destination <cmake -Wno->` on the command line.
|
||||
This may not be set to ``false`` if ``errors.installAbsoluteDestination`` is set to ``true``.
|
||||
|
||||
.. _`CMakePresets.configurePresets.warnings.policy`:
|
||||
|
||||
``policy``
|
||||
.. presets-versionadded:: 12
|
||||
|
||||
An optional boolean. Equivalent to passing :option:`-Wpolicy <cmake -W>` or
|
||||
:option:`-Wno-policy <cmake -Wno->` on the command line.
|
||||
This may not be set to ``false`` if ``errors.policy`` is set to ``true``.
|
||||
|
||||
.. _`CMakePresets.configurePresets.warnings.uninitialized`:
|
||||
|
||||
``uninitialized``
|
||||
|
||||
@@ -210,7 +210,7 @@ bool cmAddCustomCommandCommand(std::vector<std::string> const& args,
|
||||
}
|
||||
if (cmp0175 == cmPolicies::WARN) {
|
||||
mf.IssueDiagnostic(
|
||||
cmDiagnostics::CMD_AUTHOR,
|
||||
cmDiagnostics::CMD_POLICY,
|
||||
cmStrCat(msg, '\n',
|
||||
cmPolicies::GetPolicyWarning(cmPolicies::CMP0175)));
|
||||
}
|
||||
@@ -383,7 +383,7 @@ bool cmAddCustomCommandCommand(std::vector<std::string> const& args,
|
||||
}
|
||||
if (cmp0175 == cmPolicies::WARN) {
|
||||
mf.IssueDiagnostic(
|
||||
cmDiagnostics::CMD_AUTHOR,
|
||||
cmDiagnostics::CMD_POLICY,
|
||||
cmStrCat(msg, '\n',
|
||||
cmPolicies::GetPolicyWarning(cmPolicies::CMP0175)));
|
||||
}
|
||||
@@ -467,7 +467,7 @@ bool cmAddCustomCommandCommand(std::vector<std::string> const& args,
|
||||
}
|
||||
if (cmp0175 == cmPolicies::WARN) {
|
||||
mf.IssueDiagnostic(
|
||||
cmDiagnostics::CMD_AUTHOR,
|
||||
cmDiagnostics::CMD_POLICY,
|
||||
cmStrCat(msg, ".\n",
|
||||
cmPolicies::GetPolicyWarning(cmPolicies::CMP0175)));
|
||||
}
|
||||
@@ -505,7 +505,7 @@ bool cmAddCustomCommandCommand(std::vector<std::string> const& args,
|
||||
}
|
||||
if (cmp0175 == cmPolicies::WARN) {
|
||||
mf.IssueDiagnostic(
|
||||
cmDiagnostics::CMD_AUTHOR,
|
||||
cmDiagnostics::CMD_POLICY,
|
||||
cmStrCat(msg, '\n',
|
||||
cmPolicies::GetPolicyWarning(cmPolicies::CMP0175)));
|
||||
}
|
||||
@@ -527,7 +527,7 @@ bool cmAddCustomCommandCommand(std::vector<std::string> const& args,
|
||||
}
|
||||
if (cmp0175 == cmPolicies::WARN) {
|
||||
mf.IssueDiagnostic(
|
||||
cmDiagnostics::CMD_AUTHOR,
|
||||
cmDiagnostics::CMD_POLICY,
|
||||
cmStrCat(msg, ".\n",
|
||||
cmPolicies::GetPolicyWarning(cmPolicies::CMP0175)));
|
||||
}
|
||||
@@ -554,7 +554,7 @@ bool cmAddCustomCommandCommand(std::vector<std::string> const& args,
|
||||
msg += "POST_BUILD";
|
||||
}
|
||||
mf.IssueDiagnostic(
|
||||
cmDiagnostics::CMD_AUTHOR,
|
||||
cmDiagnostics::CMD_POLICY,
|
||||
cmStrCat(msg, " to preserve backward compatibility.\n",
|
||||
cmPolicies::GetPolicyWarning(cmPolicies::CMP0175)));
|
||||
}
|
||||
@@ -578,7 +578,7 @@ bool cmAddCustomCommandCommand(std::vector<std::string> const& args,
|
||||
}
|
||||
if (cmp0175 == cmPolicies::WARN) {
|
||||
mf.IssueDiagnostic(
|
||||
cmDiagnostics::CMD_AUTHOR,
|
||||
cmDiagnostics::CMD_POLICY,
|
||||
cmStrCat(msg, ".\n",
|
||||
cmPolicies::GetPolicyWarning(cmPolicies::CMP0175)));
|
||||
}
|
||||
|
||||
@@ -35,7 +35,7 @@ void cmBinUtilsLinker::NormalizePath(std::string& path) const
|
||||
this->Archive->GetMakefile()->GetPolicyStatus(cmPolicies::CMP0207);
|
||||
if (policy == cmPolicies::WARN) {
|
||||
this->Archive->GetMakefile()->IssueDiagnostic(
|
||||
cmDiagnostics::CMD_AUTHOR,
|
||||
cmDiagnostics::CMD_POLICY,
|
||||
cmStrCat(cmPolicies::GetPolicyWarning(cmPolicies::CMP0207),
|
||||
"\n"
|
||||
"Path\n \"",
|
||||
|
||||
@@ -364,7 +364,7 @@ public:
|
||||
makefile->PolicyOptionalWarningEnabled(
|
||||
"CMAKE_POLICY_WARNING_CMP0156")) {
|
||||
makefile->IssueDiagnostic(
|
||||
cmDiagnostics::CMD_AUTHOR,
|
||||
cmDiagnostics::CMD_POLICY,
|
||||
cmStrCat(cmPolicies::GetPolicyWarning(cmPolicies::CMP0156),
|
||||
"\nSince the policy is not set, legacy libraries "
|
||||
"de-duplication strategy will be applied."),
|
||||
@@ -381,7 +381,7 @@ public:
|
||||
makefile->PolicyOptionalWarningEnabled(
|
||||
"CMAKE_POLICY_WARNING_CMP0179")) {
|
||||
makefile->IssueDiagnostic(
|
||||
cmDiagnostics::CMD_AUTHOR,
|
||||
cmDiagnostics::CMD_POLICY,
|
||||
cmStrCat(cmPolicies::GetPolicyWarning(cmPolicies::CMP0179),
|
||||
"\nSince the policy is not set, static libraries "
|
||||
"de-duplication will keep the last occurrence of the "
|
||||
|
||||
@@ -667,7 +667,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.IssueDiagnostic(cmDiagnostics::CMD_AUTHOR, e.str());
|
||||
this->Makefile.IssueDiagnostic(cmDiagnostics::CMD_POLICY, e.str());
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
@@ -758,7 +758,7 @@ cm::optional<cmTryCompileResult> cmCoreTryCompile::TryCompileCode(
|
||||
"(e.g. CMAKE_C_FLAGS_DEBUG) in the test project."
|
||||
;
|
||||
/* clang-format on */
|
||||
this->Makefile->IssueDiagnostic(cmDiagnostics::CMD_AUTHOR, w.str());
|
||||
this->Makefile->IssueDiagnostic(cmDiagnostics::CMD_POLICY, w.str());
|
||||
}
|
||||
CM_FALLTHROUGH;
|
||||
case cmPolicies::OLD:
|
||||
@@ -1048,7 +1048,7 @@ cm::optional<cmTryCompileResult> cmCoreTryCompile::TryCompileCode(
|
||||
for (std::string const& vi : warnCMP0067Variables) {
|
||||
w << " " << vi << "\n";
|
||||
}
|
||||
this->Makefile->IssueDiagnostic(cmDiagnostics::CMD_AUTHOR, w.str());
|
||||
this->Makefile->IssueDiagnostic(cmDiagnostics::CMD_POLICY, w.str());
|
||||
}
|
||||
|
||||
for (auto const& p : arguments.LangProps) {
|
||||
|
||||
@@ -28,7 +28,9 @@
|
||||
#define CM_FOR_EACH_DIAGNOSTIC_TABLE(ACTION, SELECT) \
|
||||
SELECT(ACTION, Warn, CMD_NONE, CMD_AUTHOR, 12) \
|
||||
SELECT(ACTION, Warn, CMD_AUTHOR, CMD_DEPRECATED, 1) \
|
||||
SELECT(ACTION, Warn, CMD_AUTHOR, CMD_EXPERIMENTAL, 12) \
|
||||
SELECT(ACTION, Ignore, CMD_AUTHOR, CMD_INSTALL_ABSOLUTE_DESTINATION, 12) \
|
||||
SELECT(ACTION, Warn, CMD_AUTHOR, CMD_POLICY, 12) \
|
||||
SELECT(ACTION, Ignore, CMD_NONE, CMD_UNINITIALIZED, 1) \
|
||||
SELECT(ACTION, Warn, CMD_NONE, CMD_UNUSED_CLI, 1)
|
||||
|
||||
|
||||
@@ -111,10 +111,10 @@ bool cmExperimental::HasSupportEnabled(cmMakefile const& mf, Feature f)
|
||||
|
||||
if (mf.GetGlobalGenerator()->ShouldWarnExperimental(data.Name, *value)) {
|
||||
if (enabled) {
|
||||
mf.IssueDiagnostic(cmDiagnostics::CMD_AUTHOR, data.Description);
|
||||
mf.IssueDiagnostic(cmDiagnostics::CMD_EXPERIMENTAL, data.Description);
|
||||
} else {
|
||||
mf.IssueDiagnostic(
|
||||
cmDiagnostics::CMD_AUTHOR,
|
||||
cmDiagnostics::CMD_EXPERIMENTAL,
|
||||
cmStrCat(
|
||||
data.Variable, " is set to incorrect value\n ", value,
|
||||
"\n"
|
||||
|
||||
@@ -200,7 +200,7 @@ static bool HandleTargetsMode(std::vector<std::string> const& args,
|
||||
switch (mf.GetPolicyStatus(cmPolicies::CMP0103)) {
|
||||
case cmPolicies::WARN:
|
||||
mf.IssueDiagnostic(
|
||||
cmDiagnostics::CMD_AUTHOR,
|
||||
cmDiagnostics::CMD_POLICY,
|
||||
cmStrCat(cmPolicies::GetPolicyWarning(cmPolicies::CMP0103),
|
||||
"\n"
|
||||
"export() command already specified for the file\n ",
|
||||
@@ -287,7 +287,7 @@ static bool HandleExportMode(std::vector<std::string> const& args,
|
||||
status.GetMakefile().IssueDiagnostic(
|
||||
cmDiagnostics::CMD_AUTHOR, cmStrCat("export "_s, status.GetError()));
|
||||
status.GetMakefile().IssueDiagnostic(
|
||||
cmDiagnostics::CMD_AUTHOR,
|
||||
cmDiagnostics::CMD_POLICY,
|
||||
cmPolicies::GetPolicyWarning(cmPolicies::CMP0208));
|
||||
}
|
||||
}
|
||||
|
||||
@@ -417,7 +417,7 @@ bool HandleStringsCommand(std::vector<std::string> const& args,
|
||||
if (status.GetMakefile().PolicyOptionalWarningEnabled(
|
||||
"CMAKE_POLICY_WARNING_CMP0159")) {
|
||||
status.GetMakefile().IssueDiagnostic(
|
||||
cmDiagnostics::CMD_AUTHOR,
|
||||
cmDiagnostics::CMD_POLICY,
|
||||
cmStrCat(cmPolicies::GetPolicyWarning(cmPolicies::CMP0159),
|
||||
"\n"
|
||||
"For compatibility, CMake is leaving CMAKE_MATCH_<n> "
|
||||
@@ -1377,7 +1377,7 @@ bool HandleRealPathCommand(std::vector<std::string> const& args,
|
||||
computeNewPath(input, realPath);
|
||||
if (oldPolicyPath != realPath) {
|
||||
status.GetMakefile().IssueDiagnostic(
|
||||
cmDiagnostics::CMD_AUTHOR,
|
||||
cmDiagnostics::CMD_POLICY,
|
||||
cmStrCat(cmPolicies::GetPolicyWarning(cmPolicies::CMP0152),
|
||||
"\n"
|
||||
"From input path:\n ",
|
||||
@@ -3324,7 +3324,7 @@ bool HandleCreateLinkCommand(std::vector<std::string> const& args,
|
||||
needToTry = false;
|
||||
} else if (cmp0205 == cmPolicies::WARN && arguments.CopyOnError) {
|
||||
status.GetMakefile().IssueDiagnostic(
|
||||
cmDiagnostics::CMD_AUTHOR,
|
||||
cmDiagnostics::CMD_POLICY,
|
||||
cmStrCat("Path\n ", fileName,
|
||||
"\nis a directory. Hard link creation is not supported "
|
||||
"for directories.\n",
|
||||
@@ -3350,7 +3350,7 @@ bool HandleCreateLinkCommand(std::vector<std::string> const& args,
|
||||
if (cmp0205 == cmPolicies::WARN && arguments.CopyOnError &&
|
||||
sourceIsDirectory) {
|
||||
status.GetMakefile().IssueDiagnostic(
|
||||
cmDiagnostics::CMD_AUTHOR,
|
||||
cmDiagnostics::CMD_POLICY,
|
||||
cmStrCat("Path\n ", fileName,
|
||||
"\nis a directory. It will be copied "
|
||||
"recursively when CMP0205 is set to NEW.\n",
|
||||
|
||||
@@ -1567,7 +1567,7 @@ bool cmFindPackageCommand::FindModule(bool& found)
|
||||
switch (status) {
|
||||
case cmPolicies::WARN: {
|
||||
this->Makefile->IssueDiagnostic(
|
||||
cmDiagnostics::CMD_AUTHOR,
|
||||
cmDiagnostics::CMD_POLICY,
|
||||
cmStrCat(cmPolicies::GetPolicyWarning(it->second), '\n'));
|
||||
CM_FALLTHROUGH;
|
||||
}
|
||||
|
||||
@@ -144,7 +144,7 @@ struct cmFindProgramHelper
|
||||
}
|
||||
if (isExeNew) {
|
||||
this->Makefile->IssueDiagnostic(
|
||||
cmDiagnostics::CMD_AUTHOR,
|
||||
cmDiagnostics::CMD_POLICY,
|
||||
cmStrCat(cmPolicies::GetPolicyWarning(cmPolicies::CMP0109),
|
||||
"\n"
|
||||
"The file\n"
|
||||
@@ -155,7 +155,7 @@ struct cmFindProgramHelper
|
||||
"CMake is ignoring it for compatibility."));
|
||||
} else {
|
||||
this->Makefile->IssueDiagnostic(
|
||||
cmDiagnostics::CMD_AUTHOR,
|
||||
cmDiagnostics::CMD_POLICY,
|
||||
cmStrCat(cmPolicies::GetPolicyWarning(cmPolicies::CMP0109),
|
||||
"\n"
|
||||
"The file\n"
|
||||
|
||||
@@ -252,7 +252,7 @@ std::string cmGeneratorExpressionEvaluationFile::FixRelativePath(
|
||||
"undefined behavior will be used."
|
||||
;
|
||||
/* clang-format on */
|
||||
lg->IssueDiagnostic(cmDiagnostics::CMD_AUTHOR, w.str());
|
||||
lg->IssueDiagnostic(cmDiagnostics::CMD_POLICY, w.str());
|
||||
}
|
||||
CM_FALLTHROUGH;
|
||||
case cmPolicies::OLD:
|
||||
|
||||
@@ -430,7 +430,7 @@ static const struct InListNode : public cmGeneratorExpressionNode
|
||||
cmStrCat(cmPolicies::GetPolicyWarning(cmPolicies::CMP0085),
|
||||
"\nSearch Item:\n \""_s, parameters.front(),
|
||||
"\"\nList:\n \""_s, parameters[1], "\"\n"_s);
|
||||
lg->IssueDiagnostic(cmDiagnostics::CMD_AUTHOR, err, eval->Backtrace);
|
||||
lg->IssueDiagnostic(cmDiagnostics::CMD_POLICY, err, eval->Backtrace);
|
||||
return "0";
|
||||
}
|
||||
if (values.empty()) {
|
||||
@@ -2900,7 +2900,7 @@ static const struct ConfigurationTestNode : public cmGeneratorExpressionNode
|
||||
eval->CurrentTarget->GetName(), "\", used by \"",
|
||||
eval->HeadTarget->GetName(),
|
||||
"\", may match multiple configurations.\n");
|
||||
lg->IssueDiagnostic(cmDiagnostics::CMD_AUTHOR, err,
|
||||
lg->IssueDiagnostic(cmDiagnostics::CMD_POLICY, err,
|
||||
eval->Backtrace);
|
||||
}
|
||||
CM_FALLTHROUGH;
|
||||
@@ -4664,7 +4664,7 @@ static const struct TargetPolicyNode : public cmGeneratorExpressionNode
|
||||
switch (statusForTarget(eval->HeadTarget, policy)) {
|
||||
case cmPolicies::WARN:
|
||||
lg->IssueDiagnostic(
|
||||
cmDiagnostics::CMD_AUTHOR,
|
||||
cmDiagnostics::CMD_POLICY,
|
||||
cmPolicies::GetPolicyWarning(policyForString(policy)));
|
||||
CM_FALLTHROUGH;
|
||||
case cmPolicies::OLD:
|
||||
@@ -4753,7 +4753,7 @@ struct TargetFilesystemArtifactDependencyCMP0112
|
||||
cmStrCat(cmPolicies::GetPolicyWarning(cmPolicies::CMP0112),
|
||||
"\nDependency being added to target:\n \"",
|
||||
target->GetName(), "\"\n");
|
||||
lg->IssueDiagnostic(cmDiagnostics::CMD_AUTHOR, err, eval->Backtrace);
|
||||
lg->IssueDiagnostic(cmDiagnostics::CMD_POLICY, err, eval->Backtrace);
|
||||
}
|
||||
CM_FALLTHROUGH;
|
||||
case cmPolicies::OLD:
|
||||
@@ -5443,7 +5443,7 @@ struct TargetOutputNameArtifactResultGetter<ArtifactPdbTag>
|
||||
if (target->GetPolicyStatusCMP0202() == cmPolicies::WARN &&
|
||||
postfix != Postfix::Unspecified) {
|
||||
lg->IssueDiagnostic(
|
||||
cmDiagnostics::CMD_AUTHOR,
|
||||
cmDiagnostics::CMD_POLICY,
|
||||
cmStrCat(cmPolicies::GetPolicyWarning(cmPolicies::CMP0202),
|
||||
"\n"
|
||||
"\"POSTFIX\" option is recognized only when the policy is "
|
||||
|
||||
@@ -828,7 +828,7 @@ bool cmGeneratorTarget::IsIPOEnabled(std::string const& lang,
|
||||
w << cmPolicies::GetPolicyWarning(cmPolicies::CMP0069) << "\n";
|
||||
w << "INTERPROCEDURAL_OPTIMIZATION property will be ignored for target "
|
||||
<< "'" << this->GetName() << "'.";
|
||||
this->Makefile->IssueDiagnostic(cmDiagnostics::CMD_AUTHOR, w.str(),
|
||||
this->Makefile->IssueDiagnostic(cmDiagnostics::CMD_POLICY, w.str(),
|
||||
this->GetBacktrace());
|
||||
|
||||
this->PolicyReportedCMP0069 = true;
|
||||
@@ -2582,7 +2582,7 @@ void cmGeneratorTarget::AddCUDAArchitectureFlags(cmBuildStep compileOrLink,
|
||||
case cmPolicies::WARN:
|
||||
if (!this->LocalGenerator->GetCMakeInstance()->GetIsInTryCompile()) {
|
||||
this->Makefile->IssueDiagnostic(
|
||||
cmDiagnostics::CMD_AUTHOR,
|
||||
cmDiagnostics::CMD_POLICY,
|
||||
cmPolicies::GetPolicyWarning(cmPolicies::CMP0104) +
|
||||
"\nCUDA_ARCHITECTURES is empty for target \"" + this->GetName() +
|
||||
"\".");
|
||||
|
||||
@@ -104,7 +104,7 @@ bool cmGeneratorTarget::AddHeaderSetVerification()
|
||||
!this->GetPropertyAsBool("ENABLE_EXPORTS")) {
|
||||
if (cmp0209 == cmPolicies::WARN && !fileSets.empty()) {
|
||||
this->Makefile->IssueDiagnostic(
|
||||
cmDiagnostics::CMD_AUTHOR,
|
||||
cmDiagnostics::CMD_POLICY,
|
||||
cmStrCat(cmPolicies::GetPolicyWarning(cmPolicies::CMP0209),
|
||||
"\n"
|
||||
"Executable target \"",
|
||||
|
||||
@@ -54,7 +54,7 @@ void processLinkDirectories(cmGeneratorTarget const* tgt,
|
||||
switch (tgt->GetPolicyStatusCMP0081()) {
|
||||
case cmPolicies::WARN:
|
||||
tgt->GetLocalGenerator()->IssueDiagnostic(
|
||||
cmDiagnostics::CMD_AUTHOR,
|
||||
cmDiagnostics::CMD_POLICY,
|
||||
cmStrCat(cmPolicies::GetPolicyWarning(cmPolicies::CMP0081),
|
||||
"\nFound relative path while evaluating"
|
||||
" link directories of \"",
|
||||
|
||||
@@ -124,7 +124,7 @@ bool processSources(cmGeneratorTarget const* tgt, std::string const& config,
|
||||
std::string fullPath = sf->ResolveFullPath(&e, &w);
|
||||
cmLocalGenerator const* const lg = tgt->GetLocalGenerator();
|
||||
if (!w.empty()) {
|
||||
lg->IssueDiagnostic(cmDiagnostics::CMD_AUTHOR, w, entry.Backtrace);
|
||||
lg->IssueDiagnostic(cmDiagnostics::CMD_POLICY, w, entry.Backtrace);
|
||||
}
|
||||
if (fullPath.empty()) {
|
||||
if (!e.empty()) {
|
||||
@@ -180,7 +180,7 @@ bool processSources(cmGeneratorTarget const* tgt, std::string const& config,
|
||||
switch (tgt->GetPolicyStatusCMP0211()) {
|
||||
case cmPolicies::WARN:
|
||||
tgt->GetLocalGenerator()->IssueDiagnostic(
|
||||
cmDiagnostics::CMD_AUTHOR,
|
||||
cmDiagnostics::CMD_POLICY,
|
||||
cmStrCat(cmPolicies::GetPolicyWarning(cmPolicies::CMP0211),
|
||||
"\nIn target \"", tgt->GetName(), "\" the file\n ",
|
||||
src, "\nalready belongs to file set \"",
|
||||
|
||||
@@ -1026,7 +1026,7 @@ void cmGlobalGenerator::CheckCompilerIdCompatibility(
|
||||
R"( compiler id "XLClang" to "XL" for compatibility.)"
|
||||
;
|
||||
/* clang-format on */
|
||||
mf->IssueDiagnostic(cmDiagnostics::CMD_AUTHOR, w.str());
|
||||
mf->IssueDiagnostic(cmDiagnostics::CMD_POLICY, w.str());
|
||||
}
|
||||
CM_FALLTHROUGH;
|
||||
case cmPolicies::OLD:
|
||||
@@ -1051,7 +1051,7 @@ void cmGlobalGenerator::CheckCompilerIdCompatibility(
|
||||
R"( compiler id "LCC" to "GNU" for compatibility.)"
|
||||
;
|
||||
/* clang-format on */
|
||||
mf->IssueDiagnostic(cmDiagnostics::CMD_AUTHOR, w.str());
|
||||
mf->IssueDiagnostic(cmDiagnostics::CMD_POLICY, w.str());
|
||||
}
|
||||
CM_FALLTHROUGH;
|
||||
case cmPolicies::OLD:
|
||||
@@ -1784,7 +1784,7 @@ void cmGlobalGenerator::Generate()
|
||||
for (std::string const& t : this->CMP0068WarnTargets) {
|
||||
w << ' ' << t << '\n';
|
||||
}
|
||||
this->GetCMakeInstance()->IssueDiagnostic(cmDiagnostics::CMD_AUTHOR,
|
||||
this->GetCMakeInstance()->IssueDiagnostic(cmDiagnostics::CMD_POLICY,
|
||||
w.str());
|
||||
}
|
||||
}
|
||||
@@ -3102,7 +3102,7 @@ void cmGlobalGenerator::ReserveGlobalTargetCodegen()
|
||||
switch (policyStatus) {
|
||||
case cmPolicies::WARN:
|
||||
tgt->GetMakefile()->IssueDiagnostic(
|
||||
cmDiagnostics::CMD_AUTHOR,
|
||||
cmDiagnostics::CMD_POLICY,
|
||||
cmStrCat(cmPolicies::GetPolicyWarning(cmPolicies::CMP0171), '\n',
|
||||
"The target name \"codegen\" is reserved."),
|
||||
tgt->GetBacktrace());
|
||||
|
||||
@@ -107,7 +107,7 @@ bool cmIncludeCommand(std::vector<std::string> const& args,
|
||||
switch (PolicyStatus) {
|
||||
case cmPolicies::WARN: {
|
||||
status.GetMakefile().IssueDiagnostic(
|
||||
cmDiagnostics::CMD_AUTHOR,
|
||||
cmDiagnostics::CMD_POLICY,
|
||||
cmStrCat(cmPolicies::GetPolicyWarning(ModulePolicy->second),
|
||||
'\n'));
|
||||
CM_FALLTHROUGH;
|
||||
|
||||
@@ -1812,7 +1812,7 @@ bool HandleDirectoryMode(std::vector<std::string> const& args,
|
||||
if (cmGeneratorExpression::Find(args[i]) == cm::string_view::npos &&
|
||||
args[i] != cmCMakePath(args[i]).Normal().String()) {
|
||||
status.GetMakefile().IssueDiagnostic(
|
||||
cmDiagnostics::CMD_AUTHOR,
|
||||
cmDiagnostics::CMD_POLICY,
|
||||
cmPolicies::GetPolicyWarning(cmPolicies::CMP0177));
|
||||
}
|
||||
CM_FALLTHROUGH;
|
||||
|
||||
@@ -49,7 +49,7 @@ cmInstallCommandArguments::cmInstallCommandArguments(
|
||||
if (cmGeneratorExpression::Find(arg) == cm::string_view::npos &&
|
||||
arg != cmCMakePath(arg).Normal().String()) {
|
||||
makefile.IssueDiagnostic(
|
||||
cmDiagnostics::CMD_AUTHOR,
|
||||
cmDiagnostics::CMD_POLICY,
|
||||
cmPolicies::GetPolicyWarning(cmPolicies::CMP0177));
|
||||
}
|
||||
return ArgumentParser::Continue::No;
|
||||
|
||||
@@ -38,7 +38,7 @@ bool cmInstallScriptGenerator::Compute(cmLocalGenerator* lg)
|
||||
switch (this->LocalGenerator->GetPolicyStatus(cmPolicies::CMP0087)) {
|
||||
case cmPolicies::WARN:
|
||||
this->LocalGenerator->IssueDiagnostic(
|
||||
cmDiagnostics::CMD_AUTHOR,
|
||||
cmDiagnostics::CMD_POLICY,
|
||||
cmPolicies::GetPolicyWarning(cmPolicies::CMP0087));
|
||||
CM_FALLTHROUGH;
|
||||
case cmPolicies::OLD:
|
||||
|
||||
@@ -988,7 +988,7 @@ void cmInstallTargetGenerator::IssueCMP0095Warning(
|
||||
w << "RPATH entries for target '" << this->Target->GetName() << "' "
|
||||
<< "will not be escaped in the intermediary "
|
||||
<< "cmake_install.cmake script.";
|
||||
cm->IssueDiagnostic(cmDiagnostics::CMD_AUTHOR, w.str(),
|
||||
cm->IssueDiagnostic(cmDiagnostics::CMD_POLICY, w.str(),
|
||||
this->GetBacktrace());
|
||||
}
|
||||
}
|
||||
|
||||
@@ -39,7 +39,7 @@ bool GetIndexArg(std::string const& arg, int* idx, cmMakefile& mf)
|
||||
std::string warn =
|
||||
cmStrCat(cmPolicies::GetPolicyWarning(cmPolicies::CMP0121),
|
||||
" Invalid list index \"", arg, "\".");
|
||||
mf.IssueDiagnostic(cmDiagnostics::CMD_AUTHOR, warn);
|
||||
mf.IssueDiagnostic(cmDiagnostics::CMD_POLICY, warn);
|
||||
CM_FALLTHROUGH;
|
||||
}
|
||||
case cmPolicies::OLD:
|
||||
|
||||
@@ -719,7 +719,7 @@ void cmLocalGenerator::GenerateInstallRules()
|
||||
"CMAKE_POLICY_WARNING_CMP0082")) {
|
||||
std::ostringstream e;
|
||||
e << cmPolicies::GetPolicyWarning(cmPolicies::CMP0082) << "\n";
|
||||
this->IssueDiagnostic(cmDiagnostics::CMD_AUTHOR, e.str());
|
||||
this->IssueDiagnostic(cmDiagnostics::CMD_POLICY, e.str());
|
||||
}
|
||||
CM_FALLTHROUGH;
|
||||
case cmPolicies::OLD: {
|
||||
@@ -2632,7 +2632,7 @@ void cmLocalGenerator::AppendFlags(std::string& flags,
|
||||
this->Makefile->PolicyOptionalWarningEnabled(
|
||||
"CMAKE_POLICY_WARNING_CMP0181")) {
|
||||
this->Makefile->IssueDiagnostic(
|
||||
cmDiagnostics::CMD_AUTHOR,
|
||||
cmDiagnostics::CMD_POLICY,
|
||||
cmStrCat(cmPolicies::GetPolicyWarning(cmPolicies::CMP0181),
|
||||
"\nSince the policy is not set, the contents of variable '",
|
||||
name,
|
||||
@@ -3413,7 +3413,7 @@ void cmLocalGenerator::AddPerLanguageLinkFlags(std::string& flags,
|
||||
cmStrCat("CMAKE_EXECUTABLE_CREATE_", lang, "_FLAGS")) &&
|
||||
this->GlobalGenerator->ShouldWarnCMP0210(lang)) {
|
||||
this->IssueDiagnostic(
|
||||
cmDiagnostics::CMD_AUTHOR,
|
||||
cmDiagnostics::CMD_POLICY,
|
||||
cmStrCat(cmPolicies::GetPolicyWarning(cmPolicies::CMP0210), "\n",
|
||||
"For compatibility with older versions of CMake, ",
|
||||
"CMAKE_", lang, "_LINK_FLAGS will be ignored for all ",
|
||||
|
||||
@@ -714,7 +714,7 @@ void cmLocalNinjaGenerator::WriteCustomCommandBuildStatement(
|
||||
this->Makefile->PolicyOptionalWarningEnabled(
|
||||
"CMAKE_POLICY_WARNING_CMP0116")) {
|
||||
this->GetCMakeInstance()->IssueDiagnostic(
|
||||
cmDiagnostics::CMD_AUTHOR,
|
||||
cmDiagnostics::CMD_POLICY,
|
||||
cmPolicies::GetPolicyWarning(cmPolicies::CMP0116),
|
||||
cc->GetBacktrace());
|
||||
}
|
||||
|
||||
@@ -289,7 +289,7 @@ void cmMakefile::MaybeWarnCMP0074(std::string const& rootVar, cmValue rootDef,
|
||||
*rootEnv, '\n');
|
||||
}
|
||||
e += "For compatibility, CMake is ignoring the variable.";
|
||||
this->IssueDiagnostic(cmDiagnostics::CMD_AUTHOR, e);
|
||||
this->IssueDiagnostic(cmDiagnostics::CMD_POLICY, e);
|
||||
}
|
||||
}
|
||||
|
||||
@@ -309,7 +309,7 @@ void cmMakefile::MaybeWarnCMP0144(std::string const& rootVar, cmValue rootDef,
|
||||
}
|
||||
e += "For compatibility, find_package is ignoring the variable, but "
|
||||
"code in a .cmake module might still use it.";
|
||||
this->IssueDiagnostic(cmDiagnostics::CMD_AUTHOR, e);
|
||||
this->IssueDiagnostic(cmDiagnostics::CMD_POLICY, e);
|
||||
}
|
||||
}
|
||||
|
||||
@@ -1933,7 +1933,7 @@ void cmMakefile::AddCacheDefinition(std::string const& name, cmValue value,
|
||||
if (this->PolicyOptionalWarningEnabled("CMAKE_POLICY_WARNING_CMP0126") &&
|
||||
this->IsNormalDefinitionSet(name)) {
|
||||
this->IssueDiagnostic(
|
||||
cmDiagnostics::CMD_AUTHOR,
|
||||
cmDiagnostics::CMD_POLICY,
|
||||
cmStrCat(cmPolicies::GetPolicyWarning(cmPolicies::CMP0126),
|
||||
"\nFor compatibility with older versions of CMake, normal "
|
||||
"variable \"",
|
||||
|
||||
@@ -68,7 +68,7 @@ bool cmMarkAsAdvancedCommand(std::vector<std::string> const& args,
|
||||
"is no longer created when policy CMP0102 is set to NEW. Run \"cmake "
|
||||
"--help-policy CMP0102\" for policy details. Use the cmake_policy "
|
||||
"command to set the policy and suppress this warning.");
|
||||
mf.IssueDiagnostic(cmDiagnostics::CMD_AUTHOR, err);
|
||||
mf.IssueDiagnostic(cmDiagnostics::CMD_POLICY, err);
|
||||
}
|
||||
|
||||
// If it's not in the cache and we're using the new behavior, nothing to
|
||||
|
||||
@@ -79,7 +79,7 @@ bool cmOptionCommand(std::vector<std::string> const& args,
|
||||
status.GetMakefile().GetStateSnapshot().GetDefinition(args[0]);
|
||||
if (!existsAfterSet) {
|
||||
status.GetMakefile().IssueDiagnostic(
|
||||
cmDiagnostics::CMD_AUTHOR,
|
||||
cmDiagnostics::CMD_POLICY,
|
||||
cmStrCat(cmPolicies::GetPolicyWarning(cmPolicies::CMP0077),
|
||||
"\n"
|
||||
"For compatibility with older versions of CMake, option "
|
||||
|
||||
@@ -1222,7 +1222,7 @@ bool cmQtAutoGenInitializer::InitScanFiles()
|
||||
files += cmStrCat(" ", Quoted(muf->FullPath), '\n');
|
||||
}
|
||||
this->Makefile->IssueDiagnostic(
|
||||
cmDiagnostics::CMD_AUTHOR,
|
||||
cmDiagnostics::CMD_POLICY,
|
||||
cmStrCat(
|
||||
cmPolicies::GetPolicyWarning(cmPolicies::CMP0071),
|
||||
"\n"
|
||||
@@ -1254,7 +1254,7 @@ bool cmQtAutoGenInitializer::InitScanFiles()
|
||||
files += cmStrCat(" ", Quoted(sf->GetFullPath()), '\n');
|
||||
}
|
||||
this->Makefile->IssueDiagnostic(
|
||||
cmDiagnostics::CMD_AUTHOR,
|
||||
cmDiagnostics::CMD_POLICY,
|
||||
cmStrCat(
|
||||
cmPolicies::GetPolicyWarning(cmPolicies::CMP0100),
|
||||
"\n"
|
||||
|
||||
@@ -20,7 +20,7 @@ bool cmReturnCommand(std::vector<std::string> const& args,
|
||||
switch (status.GetMakefile().GetPolicyStatus(cmPolicies::CMP0140)) {
|
||||
case cmPolicies::WARN:
|
||||
status.GetMakefile().IssueDiagnostic(
|
||||
cmDiagnostics::CMD_AUTHOR,
|
||||
cmDiagnostics::CMD_POLICY,
|
||||
cmStrCat(
|
||||
cmPolicies::GetPolicyWarning(cmPolicies::CMP0140),
|
||||
"\n"
|
||||
|
||||
@@ -397,7 +397,7 @@ bool HandleAndValidateSourceFilePropertyGENERATED(
|
||||
if (cmp0118PolicyWARN) {
|
||||
if (!cmIsOn(propertyValue) && !cmIsOff(propertyValue)) {
|
||||
mf.IssueDiagnostic(
|
||||
cmDiagnostics::CMD_AUTHOR,
|
||||
cmDiagnostics::CMD_POLICY,
|
||||
cmStrCat(cmPolicies::GetPolicyWarning(cmPolicies::CMP0118),
|
||||
"\nAttempt to set property 'GENERATED' with the following "
|
||||
"non-boolean value (which will be interpreted as \"0\"):\n",
|
||||
@@ -408,14 +408,14 @@ bool HandleAndValidateSourceFilePropertyGENERATED(
|
||||
}
|
||||
if (cmIsOff(propertyValue)) {
|
||||
mf.IssueDiagnostic(
|
||||
cmDiagnostics::CMD_AUTHOR,
|
||||
cmDiagnostics::CMD_POLICY,
|
||||
cmStrCat(cmPolicies::GetPolicyWarning(cmPolicies::CMP0118),
|
||||
"\nUnsetting property 'GENERATED' will not be allowed under "
|
||||
"policy CMP0118!\n"));
|
||||
}
|
||||
if (op == PropertyOp::Append || op == PropertyOp::AppendAsString) {
|
||||
mf.IssueDiagnostic(
|
||||
cmDiagnostics::CMD_AUTHOR,
|
||||
cmDiagnostics::CMD_POLICY,
|
||||
cmStrCat(cmPolicies::GetPolicyWarning(cmPolicies::CMP0118),
|
||||
"\nAppending to property 'GENERATED' will not be allowed "
|
||||
"under policy CMP0118!\n"));
|
||||
|
||||
@@ -207,7 +207,7 @@ bool cmSourceFile::FindFullPath(std::string* error,
|
||||
if (cmp0115Warning) {
|
||||
*cmp0115Warning = std::move(warning);
|
||||
} else {
|
||||
makefile->IssueDiagnostic(cmDiagnostics::CMD_AUTHOR, warning,
|
||||
makefile->IssueDiagnostic(cmDiagnostics::CMD_POLICY, warning,
|
||||
cmListFileBacktrace{});
|
||||
}
|
||||
}
|
||||
|
||||
@@ -129,7 +129,7 @@ struct StandardLevelComputer
|
||||
}
|
||||
if (state) {
|
||||
makefile->IssueDiagnostic(
|
||||
cmDiagnostics::CMD_AUTHOR,
|
||||
cmDiagnostics::CMD_POLICY,
|
||||
cmStrCat(cmPolicies::GetPolicyWarning(cmPolicies::CMP0128),
|
||||
"\nFor compatibility with older versions of CMake, "
|
||||
"compiler extensions won't be ",
|
||||
@@ -179,7 +179,7 @@ struct StandardLevelComputer
|
||||
makefile->PolicyOptionalWarningEnabled(
|
||||
"CMAKE_POLICY_WARNING_CMP0128")) {
|
||||
makefile->IssueDiagnostic(
|
||||
cmDiagnostics::CMD_AUTHOR,
|
||||
cmDiagnostics::CMD_POLICY,
|
||||
cmStrCat(cmPolicies::GetPolicyWarning(cmPolicies::CMP0128),
|
||||
"\nFor compatibility with older versions of CMake, "
|
||||
"unnecessary flags for language standard or compiler "
|
||||
|
||||
+1
-1
@@ -476,7 +476,7 @@ void cmState::AddDisallowedCommand(std::string const& name,
|
||||
if (additionalWarning) {
|
||||
warning = cmStrCat(warning, '\n', additionalWarning);
|
||||
}
|
||||
mf.IssueDiagnostic(cmDiagnostics::CMD_AUTHOR, warning);
|
||||
mf.IssueDiagnostic(cmDiagnostics::CMD_POLICY, warning);
|
||||
}
|
||||
CM_FALLTHROUGH;
|
||||
case cmPolicies::OLD:
|
||||
|
||||
+5
-5
@@ -2062,7 +2062,7 @@ struct ReadOnlyProperty
|
||||
switch (target->GetPolicyStatus(*this->Policy)) {
|
||||
case cmPolicies::WARN:
|
||||
context->IssueDiagnostic(
|
||||
cmDiagnostics::CMD_AUTHOR,
|
||||
cmDiagnostics::CMD_POLICY,
|
||||
cmPolicies::GetPolicyWarning(cmPolicies::CMP0160) + "\n" +
|
||||
this->message(prop, target));
|
||||
CM_FALLTHROUGH;
|
||||
@@ -3138,7 +3138,7 @@ std::string cmTarget::ImportedGetFullPath(
|
||||
switch (this->GetPolicyStatus(cmPolicies::CMP0111)) {
|
||||
case cmPolicies::WARN:
|
||||
this->impl->Makefile->IssueDiagnostic(
|
||||
cmDiagnostics::CMD_AUTHOR,
|
||||
cmDiagnostics::CMD_POLICY,
|
||||
cmPolicies::GetPolicyWarning(cmPolicies::CMP0111) + "\n" +
|
||||
message());
|
||||
CM_FALLTHROUGH;
|
||||
@@ -3328,7 +3328,7 @@ bool cmTarget::GetMappedConfig(std::string const& desiredConfig, cmValue& loc,
|
||||
"\nConfiguration selection for imported target \"", this->GetName(),
|
||||
"\" failed, but would select configuration \"", newConfig,
|
||||
"\" under the NEW policy.\n");
|
||||
this->GetMakefile()->IssueDiagnostic(cmDiagnostics::CMD_AUTHOR, err);
|
||||
this->GetMakefile()->IssueDiagnostic(cmDiagnostics::CMD_POLICY, err);
|
||||
}
|
||||
|
||||
return false;
|
||||
@@ -3342,7 +3342,7 @@ bool cmTarget::GetMappedConfig(std::string const& desiredConfig, cmValue& loc,
|
||||
"\nConfiguration selection for imported target \"",
|
||||
this->GetName(), "\" selected configuration \"", oldConfig,
|
||||
"\", but would fail under the NEW policy.\n");
|
||||
this->GetMakefile()->IssueDiagnostic(cmDiagnostics::CMD_AUTHOR, err);
|
||||
this->GetMakefile()->IssueDiagnostic(cmDiagnostics::CMD_POLICY, err);
|
||||
} else if (suffix != newSuffix) {
|
||||
// OLD and NEW policies found different configurations.
|
||||
cm::string_view newConfig = configFromSuffix(newSuffix);
|
||||
@@ -3352,7 +3352,7 @@ bool cmTarget::GetMappedConfig(std::string const& desiredConfig, cmValue& loc,
|
||||
this->GetName(), "\" selected configuration \"", oldConfig,
|
||||
"\", but would select configuration \"", newConfig,
|
||||
"\" under the NEW policy.\n");
|
||||
this->GetMakefile()->IssueDiagnostic(cmDiagnostics::CMD_AUTHOR, err);
|
||||
this->GetMakefile()->IssueDiagnostic(cmDiagnostics::CMD_POLICY, err);
|
||||
}
|
||||
|
||||
return true;
|
||||
|
||||
@@ -445,7 +445,7 @@ bool TLL::HandleLibrary(ProcessingState currentProcessingState,
|
||||
|
||||
if (this->WarnRemoteInterface) {
|
||||
this->Makefile.IssueDiagnostic(
|
||||
cmDiagnostics::CMD_AUTHOR,
|
||||
cmDiagnostics::CMD_POLICY,
|
||||
cmStrCat(
|
||||
cmPolicies::GetPolicyWarning(cmPolicies::CMP0079), "\nTarget\n ",
|
||||
this->Target->GetName(),
|
||||
|
||||
@@ -187,7 +187,7 @@ std::vector<std::string> TargetSourcesImpl::ConvertToAbsoluteContent(
|
||||
e << "A private source from a directory other than that of target \""
|
||||
<< tgt->GetName() << "\" has a relative path.";
|
||||
}
|
||||
this->Makefile->IssueDiagnostic(cmDiagnostics::CMD_AUTHOR, e.str());
|
||||
this->Makefile->IssueDiagnostic(cmDiagnostics::CMD_POLICY, e.str());
|
||||
}
|
||||
|
||||
return useAbsoluteContent ? absoluteContent : content;
|
||||
|
||||
@@ -37,7 +37,7 @@ bool needToQuoteTestName(cmMakefile const& mf, std::string const& name)
|
||||
// Only warn if a forbidden character is used in the name.
|
||||
if (name.find_first_of("$[] #;\t\n\"\\") != std::string::npos) {
|
||||
mf.IssueDiagnostic(
|
||||
cmDiagnostics::CMD_AUTHOR,
|
||||
cmDiagnostics::CMD_POLICY,
|
||||
cmStrCat(cmPolicies::GetPolicyWarning(cmPolicies::CMP0110),
|
||||
"\nThe following name given to add_test() is invalid if "
|
||||
"CMP0110 is not set or set to OLD:\n `",
|
||||
@@ -149,7 +149,7 @@ void cmTestGenerator::GenerateCommand(std::ostream& os,
|
||||
propVal, cmList::ExpandElements::Yes, cmList::EmptyElements::Yes);
|
||||
if (launcherWithArgs != argsWithEmptyValuesPreserved) {
|
||||
this->LG->GetMakefile()->IssueDiagnostic(
|
||||
cmDiagnostics::CMD_AUTHOR,
|
||||
cmDiagnostics::CMD_POLICY,
|
||||
cmStrCat("The ", propertyName, " property of target '",
|
||||
target->GetName(),
|
||||
"' contains empty list items. Those empty items are "
|
||||
|
||||
@@ -133,7 +133,7 @@ bool cmWhileFunctionBlocker::Replay(std::vector<cmListFileFunction> functions,
|
||||
if (mf.GetPolicyStatus(cmPolicies::CMP0130) == cmPolicies::WARN) {
|
||||
err =
|
||||
cmStrCat(cmPolicies::GetPolicyWarning(cmPolicies::CMP0130), '\n', err);
|
||||
mf.IssueDiagnostic(cmDiagnostics::CMD_AUTHOR, err, whileBT);
|
||||
mf.IssueDiagnostic(cmDiagnostics::CMD_POLICY, err, whileBT);
|
||||
} else {
|
||||
mf.IssueMessage(messageType, err, whileBT);
|
||||
if (messageType == MessageType::FATAL_ERROR) {
|
||||
|
||||
+1
-1
@@ -182,7 +182,7 @@ void cmDeprecatedWatch(std::string const& /*unused*/,
|
||||
cmMakefile const* mf)
|
||||
{
|
||||
if (mf->GetPolicyStatus(cmPolicies::CMP0218) == cmPolicies::WARN) {
|
||||
mf->IssueDiagnostic(cmDiagnostics::CMD_AUTHOR,
|
||||
mf->IssueDiagnostic(cmDiagnostics::CMD_POLICY,
|
||||
cmPolicies::GetPolicyWarning(cmPolicies::CMP0218));
|
||||
}
|
||||
}
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
CMake Warning \(author\):
|
||||
CMake Warning \(policy\):
|
||||
Policy CMP0068 is not set: RPATH settings on macOS do not affect
|
||||
install_name\. Run "cmake --help-policy CMP0068" for policy details\. Use
|
||||
the cmake_policy command to set the policy and suppress this warning\.
|
||||
@@ -9,4 +9,5 @@ CMake Warning \(author\):
|
||||
foo3
|
||||
foo4
|
||||
|
||||
This warning is for project developers\. Use -Wno-author to suppress it\.
|
||||
This warning is for project developers\. Use -Wno-author or -Wno-policy to
|
||||
suppress it\.
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
^CMake Warning \(author\) at CMP0069-WARN\.cmake:[0-9]+ \(add_executable\):
|
||||
^CMake Warning \(policy\) at CMP0069-WARN\.cmake:[0-9]+ \(add_executable\):
|
||||
Policy CMP0069 is not set: INTERPROCEDURAL_OPTIMIZATION is enforced when
|
||||
enabled\. Run "cmake --help-policy CMP0069" for policy details\. Use the
|
||||
cmake_policy command to set the policy and suppress this warning\.
|
||||
@@ -6,4 +6,5 @@
|
||||
INTERPROCEDURAL_OPTIMIZATION property will be ignored for target 'foo'\.
|
||||
Call Stack \(most recent call first\):
|
||||
CMakeLists\.txt:[0-9]+ \(include\)
|
||||
This warning is for project developers\. Use -Wno-author to suppress it\.$
|
||||
This warning is for project developers\. Use -Wno-author or -Wno-policy to
|
||||
suppress it\.$
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
CMake Warning \(author\) in CMakeLists\.txt:
|
||||
CMake Warning \(policy\) in CMakeLists\.txt:
|
||||
Policy CMP0081 is not set: Relative paths not allowed in LINK_DIRECTORIES
|
||||
target property\. Run "cmake --help-policy CMP0081" for policy details\.
|
||||
Use the cmake_policy command to set the policy and suppress this warning\.
|
||||
@@ -7,4 +7,5 @@ CMake Warning \(author\) in CMakeLists\.txt:
|
||||
|
||||
"\.\./lib"
|
||||
|
||||
This warning is for project developers\. Use -Wno-author to suppress it\.
|
||||
This warning is for project developers\. Use -Wno-author or -Wno-policy to
|
||||
suppress it\.
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
CMake Warning \(author\) at CMP0102-Common\.cmake:2 \(mark_as_advanced\):
|
||||
CMake Warning \(policy\) at CMP0102-Common\.cmake:2 \(mark_as_advanced\):
|
||||
Policy CMP0102 is not set: The variable named "CMP0102_TEST_VARIABLE" is
|
||||
not in the cache\. This results in an empty cache entry which is no longer
|
||||
created when policy CMP0102 is set to NEW\. Run "cmake --help-policy
|
||||
@@ -7,4 +7,5 @@ CMake Warning \(author\) at CMP0102-Common\.cmake:2 \(mark_as_advanced\):
|
||||
Call Stack \(most recent call first\):
|
||||
CMP0102-WARN\.cmake:4 \(include\)
|
||||
CMakeLists\.txt:3 \(include\)
|
||||
This warning is for project developers\. Use -Wno-author to suppress it\.
|
||||
This warning is for project developers\. Use -Wno-author or -Wno-policy to
|
||||
suppress it\.
|
||||
|
||||
@@ -1,8 +1,9 @@
|
||||
CMake Warning \(author\) in CMakeLists\.txt:
|
||||
CMake Warning \(policy\) in CMakeLists\.txt:
|
||||
Policy CMP0104 is not set: CMAKE_CUDA_ARCHITECTURES now detected for NVCC,
|
||||
empty CUDA_ARCHITECTURES not allowed\. Run "cmake --help-policy CMP0104"
|
||||
for policy details\. Use the cmake_policy command to set the policy and
|
||||
suppress this warning\.
|
||||
|
||||
CUDA_ARCHITECTURES is empty for target "cuda"\.
|
||||
This warning is for project developers\. Use -Wno-author to suppress it\.
|
||||
This warning is for project developers\. Use -Wno-author or -Wno-policy to
|
||||
suppress it\.
|
||||
|
||||
@@ -1,8 +1,9 @@
|
||||
CMake Warning \(author\) at CMP0106-Common\.cmake:1 \(include\):
|
||||
CMake Warning \(policy\) at CMP0106-Common\.cmake:1 \(include\):
|
||||
Policy CMP0106 is not set: The Documentation module is removed\. Run "cmake
|
||||
--help-policy CMP0106" for policy details\. Use the cmake_policy command to
|
||||
set the policy and suppress this warning\.
|
||||
|
||||
Call Stack \(most recent call first\):
|
||||
subdir/CMakeLists\.txt:2 \(include\)
|
||||
This warning is for project developers\. Use -Wno-author to suppress it\.
|
||||
This warning is for project developers\. Use -Wno-author or -Wno-policy to
|
||||
suppress it\.
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
CMake Warning \(author\) at CMP0106-Common\.cmake:1 \(include\):
|
||||
CMake Warning \(policy\) at CMP0106-Common\.cmake:1 \(include\):
|
||||
Policy CMP0106 is not set: The Documentation module is removed\. Run "cmake
|
||||
--help-policy CMP0106" for policy details\. Use the cmake_policy command to
|
||||
set the policy and suppress this warning\.
|
||||
@@ -6,4 +6,5 @@ CMake Warning \(author\) at CMP0106-Common\.cmake:1 \(include\):
|
||||
Call Stack \(most recent call first\):
|
||||
CMP0106-WARN-VTK\.cmake:2 \(include\)
|
||||
CMakeLists\.txt:7 \(include\)
|
||||
This warning is for project developers\. Use -Wno-author to suppress it\.
|
||||
This warning is for project developers\. Use -Wno-author or -Wno-policy to
|
||||
suppress it\.
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
CMake Warning \(author\) at CMP0106-Common\.cmake:1 \(include\):
|
||||
CMake Warning \(policy\) at CMP0106-Common\.cmake:1 \(include\):
|
||||
Policy CMP0106 is not set: The Documentation module is removed\. Run "cmake
|
||||
--help-policy CMP0106" for policy details\. Use the cmake_policy command to
|
||||
set the policy and suppress this warning\.
|
||||
@@ -6,7 +6,8 @@ CMake Warning \(author\) at CMP0106-Common\.cmake:1 \(include\):
|
||||
Call Stack \(most recent call first\):
|
||||
CMP0106-WARN\.cmake:2 \(include\)
|
||||
CMakeLists\.txt:7 \(include\)
|
||||
This warning is for project developers\. Use -Wno-author to suppress it\.
|
||||
This warning is for project developers\. Use -Wno-author or -Wno-policy to
|
||||
suppress it\.
|
||||
|
||||
CMake Warning \(author\) at .*/Modules/Documentation\.cmake:[0-9]+ \(message\):
|
||||
Policy CMP0106 is not set: The Documentation module is removed\. Run "cmake
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
^(CMake Warning \(author\) in CMakeLists\.txt:
|
||||
^(CMake Warning \(policy\) in CMakeLists\.txt:
|
||||
Policy CMP0111 is not set: An imported target missing its location property
|
||||
fails during generation\. Run "cmake --help-policy CMP0111" for policy
|
||||
details\. Use the cmake_policy command to set the policy and suppress this
|
||||
@@ -6,8 +6,9 @@
|
||||
|
||||
IMPORTED_(LOCATION|IMPLIB) not set for imported target "(unknown|static)_lib"( configuration
|
||||
"[^"]+")?\.
|
||||
This warning is for project developers\. Use -Wno-author to suppress it\.
|
||||
+)+CMake Warning \(author\) in CMakeLists\.txt:
|
||||
This warning is for project developers\. Use -Wno-author or -Wno-policy to
|
||||
suppress it\.
|
||||
+)+CMake Warning \(policy\) in CMakeLists\.txt:
|
||||
Policy CMP0111 is not set: An imported target missing its location property
|
||||
fails during generation\. Run "cmake --help-policy CMP0111" for policy
|
||||
details\. Use the cmake_policy command to set the policy and suppress this
|
||||
@@ -16,4 +17,5 @@ This warning is for project developers\. Use -Wno-author to suppress it\.
|
||||
IMPORTED_(LOCATION|IMPLIB) not set for imported target "(unknown|static)_lib"( configuration
|
||||
"[^"]+")?\.
|
||||
.*(IMPORTED_LOCATION or )?IMPORTED_IMPLIB not set for imported target.*"shared_lib".*
|
||||
This warning is for project developers\. Use -Wno-author to suppress it\.$
|
||||
This warning is for project developers\. Use -Wno-author or -Wno-policy to
|
||||
suppress it\.$
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
^CMake Warning \(author\) at CMP0115\.cmake:[0-9]+ \(add_executable\):
|
||||
^CMake Warning \(policy\) at CMP0115\.cmake:[0-9]+ \(add_executable\):
|
||||
Policy CMP0115 is not set: Source file extensions must be explicit\. Run
|
||||
"cmake --help-policy CMP0115" for policy details\. Use the cmake_policy
|
||||
command to set the policy and suppress this warning\.
|
||||
@@ -10,7 +10,8 @@
|
||||
Call Stack \(most recent call first\):
|
||||
CMP0115-WARN\.cmake:[0-9]+ \(include\)
|
||||
CMakeLists\.txt:[0-9]+ \(include\)
|
||||
This warning is for project developers\. Use -Wno-author to suppress it\.
|
||||
This warning is for project developers\. Use -Wno-author or -Wno-policy to
|
||||
suppress it\.
|
||||
|
||||
CMake Error at CMP0115\.cmake:[0-9]+ \(add_executable\):
|
||||
Cannot find source file:
|
||||
|
||||
@@ -11,20 +11,22 @@ Call Stack \(most recent call first\):
|
||||
This warning is for project developers\. Use -Wno-author or -Wno-deprecated
|
||||
to suppress it\.
|
||||
+
|
||||
CMake Warning \(author\) at CMP0116-Mixed\.cmake:1 \(add_custom_command\):
|
||||
CMake Warning \(policy\) at CMP0116-Mixed\.cmake:1 \(add_custom_command\):
|
||||
Policy CMP0116 is not set: Ninja generators transform DEPFILEs from
|
||||
add_custom_command\(\)\. Run "cmake --help-policy CMP0116" for policy
|
||||
details\. Use the cmake_policy command to set the policy and suppress this
|
||||
warning\.
|
||||
Call Stack \(most recent call first\):
|
||||
CMakeLists\.txt:[0-9]+ \(include\)
|
||||
This warning is for project developers\. Use -Wno-author to suppress it\.(
|
||||
This warning is for project developers\. Use -Wno-author or -Wno-policy to
|
||||
suppress it\.(
|
||||
|
||||
CMake Warning \(author\) at CMP0116-Mixed\.cmake:1 \(add_custom_command\):
|
||||
CMake Warning \(policy\) at CMP0116-Mixed\.cmake:1 \(add_custom_command\):
|
||||
Policy CMP0116 is not set: Ninja generators transform DEPFILEs from
|
||||
add_custom_command\(\)\. Run "cmake --help-policy CMP0116" for policy
|
||||
details\. Use the cmake_policy command to set the policy and suppress this
|
||||
warning\.
|
||||
Call Stack \(most recent call first\):
|
||||
CMakeLists\.txt:[0-9]+ \(include\)
|
||||
This warning is for project developers\. Use -Wno-author to suppress it\.)*$
|
||||
This warning is for project developers\. Use -Wno-author or -Wno-policy to
|
||||
suppress it\.)*$
|
||||
|
||||
@@ -1,7 +1,8 @@
|
||||
^(CMake Warning \(author\) at Subdirectory/CMakeLists\.txt:[0-9]+ \(add_custom_command\):
|
||||
^(CMake Warning \(policy\) at Subdirectory/CMakeLists\.txt:[0-9]+ \(add_custom_command\):
|
||||
Policy CMP0116 is not set: Ninja generators transform DEPFILEs from
|
||||
add_custom_command\(\)\. Run "cmake --help-policy CMP0116" for policy
|
||||
details\. Use the cmake_policy command to set the policy and suppress this
|
||||
warning\.
|
||||
This warning is for project developers\. Use -Wno-author to suppress it\.
|
||||
This warning is for project developers\. Use -Wno-author or -Wno-policy to
|
||||
suppress it\.
|
||||
*)+$
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
^(CMake Warning \(author\) at Common\.cmake:[0-9]+ \(add_custom_command\):
|
||||
^(CMake Warning \(policy\) at Common\.cmake:[0-9]+ \(add_custom_command\):
|
||||
Policy CMP0116 is not set: Ninja generators transform DEPFILEs from
|
||||
add_custom_command\(\)\. Run "cmake --help-policy CMP0116" for policy
|
||||
details\. Use the cmake_policy command to set the policy and suppress this
|
||||
@@ -6,11 +6,13 @@
|
||||
Call Stack \(most recent call first\):
|
||||
CMP0116-WARN-WARN\.cmake:[0-9]+ \(include\)
|
||||
CMakeLists\.txt:[0-9]+ \(include\)
|
||||
This warning is for project developers\. Use -Wno-author to suppress it\.
|
||||
+)+(CMake Warning \(author\) at Subdirectory/CMakeLists\.txt:[0-9]+ \(add_custom_command\):
|
||||
This warning is for project developers\. Use -Wno-author or -Wno-policy to
|
||||
suppress it\.
|
||||
+)+(CMake Warning \(policy\) at Subdirectory/CMakeLists\.txt:[0-9]+ \(add_custom_command\):
|
||||
Policy CMP0116 is not set: Ninja generators transform DEPFILEs from
|
||||
add_custom_command\(\)\. Run "cmake --help-policy CMP0116" for policy
|
||||
details\. Use the cmake_policy command to set the policy and suppress this
|
||||
warning\.
|
||||
This warning is for project developers\. Use -Wno-author to suppress it\.
|
||||
This warning is for project developers\. Use -Wno-author or -Wno-policy to
|
||||
suppress it\.
|
||||
*)+$
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
^((CMake Warning \(author\) at subdir-Common-Test11/CMakeLists\.txt:[0-9]+ \(set_property\):
|
||||
^((CMake Warning \(policy\) at subdir-Common-Test11/CMakeLists\.txt:[0-9]+ \(set_property\):
|
||||
Policy CMP0118 is not set: GENERATED sources may be used across directories
|
||||
without manual marking\. Run "cmake --help-policy CMP0118" for policy
|
||||
details\. Use the cmake_policy command to set the policy and suppress this
|
||||
@@ -6,9 +6,10 @@
|
||||
|
||||
Unsetting property 'GENERATED' will not be allowed under policy CMP0118!
|
||||
|
||||
This warning is for project developers\. Use -Wno-author to suppress it\.
|
||||
This warning is for project developers\. Use -Wno-author or -Wno-policy to
|
||||
suppress it\.
|
||||
+)+
|
||||
(CMake Warning \(author\) at CMP0118-Common-Test11\.cmake:[0-9]+ \(add_subdirectory\):
|
||||
(CMake Warning \(policy\) at CMP0118-Common-Test11\.cmake:[0-9]+ \(add_subdirectory\):
|
||||
Policy CMP0118 is not set: GENERATED sources may be used across directories
|
||||
without manual marking\. Run "cmake --help-policy CMP0118" for policy
|
||||
details\. Use the cmake_policy command to set the policy and suppress this
|
||||
@@ -19,7 +20,8 @@ This warning is for project developers\. Use -Wno-author to suppress it\.
|
||||
Call Stack \(most recent call first\):
|
||||
CMP0118-WARN-Test11\.cmake:[0-9]+ \(include\)
|
||||
CMakeLists\.txt:[0-9]+ \(include\)
|
||||
This warning is for project developers\. Use -Wno-author to suppress it\.
|
||||
This warning is for project developers\. Use -Wno-author or -Wno-policy to
|
||||
suppress it\.
|
||||
+)+)+
|
||||
Generated_source0\.txt: # 1a # GENERATED = `1`
|
||||
Generated_source0\.txt: # 1b # GENERATED = `1`
|
||||
|
||||
@@ -7,7 +7,7 @@ CMake Error at subdir-Common-Test13/CMakeLists\.txt:[0-9]+ \(add_custom_command\
|
||||
CMake Error at subdir-Common-Test13/CMakeLists\.txt:[0-9]+ \(add_custom_command\):
|
||||
TARGET 'custom[4-6]' was not created in this directory\.
|
||||
+
|
||||
((CMake Warning \(author\) at subdir-Common-Test13/CMakeLists\.txt:[0-9]+ \(set_property\):
|
||||
((CMake Warning \(policy\) at subdir-Common-Test13/CMakeLists\.txt:[0-9]+ \(set_property\):
|
||||
Policy CMP0118 is not set: GENERATED sources may be used across directories
|
||||
without manual marking\. Run "cmake --help-policy CMP0118" for policy
|
||||
details\. Use the cmake_policy command to set the policy and suppress this
|
||||
@@ -15,9 +15,10 @@ CMake Error at subdir-Common-Test13/CMakeLists\.txt:[0-9]+ \(add_custom_command\
|
||||
|
||||
Unsetting property 'GENERATED' will not be allowed under policy CMP0118!
|
||||
|
||||
This warning is for project developers\. Use -Wno-author to suppress it\.
|
||||
This warning is for project developers\. Use -Wno-author or -Wno-policy to
|
||||
suppress it\.
|
||||
+)+
|
||||
(CMake Warning \(author\) at CMP0118-Common-Test13\.cmake:[0-9]+ \(add_subdirectory\):
|
||||
(CMake Warning \(policy\) at CMP0118-Common-Test13\.cmake:[0-9]+ \(add_subdirectory\):
|
||||
Policy CMP0118 is not set: GENERATED sources may be used across directories
|
||||
without manual marking\. Run "cmake --help-policy CMP0118" for policy
|
||||
details\. Use the cmake_policy command to set the policy and suppress this
|
||||
@@ -28,7 +29,8 @@ This warning is for project developers\. Use -Wno-author to suppress it\.
|
||||
Call Stack \(most recent call first\):
|
||||
CMP0118-WARN-Test13\.cmake:[0-9]+ \(include\)
|
||||
CMakeLists\.txt:[0-9]+ \(include\)
|
||||
This warning is for project developers\. Use -Wno-author to suppress it\.
|
||||
This warning is for project developers\. Use -Wno-author or -Wno-policy to
|
||||
suppress it\.
|
||||
+)+)+
|
||||
Generated_source0\.txt: # 1a # GENERATED = `1`
|
||||
Generated_source0\.txt: # 1b # GENERATED = `1`
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
^((CMake Warning \(author\) at subdir-Common-Test15/CMakeLists\.txt:[0-9]+ \(set_property\):
|
||||
^((CMake Warning \(policy\) at subdir-Common-Test15/CMakeLists\.txt:[0-9]+ \(set_property\):
|
||||
Policy CMP0118 is not set: GENERATED sources may be used across directories
|
||||
without manual marking\. Run "cmake --help-policy CMP0118" for policy
|
||||
details\. Use the cmake_policy command to set the policy and suppress this
|
||||
@@ -6,9 +6,10 @@
|
||||
|
||||
Unsetting property 'GENERATED' will not be allowed under policy CMP0118!
|
||||
|
||||
This warning is for project developers\. Use -Wno-author to suppress it\.
|
||||
This warning is for project developers\. Use -Wno-author or -Wno-policy to
|
||||
suppress it\.
|
||||
+)+
|
||||
(CMake Warning \(author\) at CMP0118-Common-Test15\.cmake:[0-9]+ \(add_subdirectory\):
|
||||
(CMake Warning \(policy\) at CMP0118-Common-Test15\.cmake:[0-9]+ \(add_subdirectory\):
|
||||
Policy CMP0118 is not set: GENERATED sources may be used across directories
|
||||
without manual marking\. Run "cmake --help-policy CMP0118" for policy
|
||||
details\. Use the cmake_policy command to set the policy and suppress this
|
||||
@@ -19,7 +20,8 @@ This warning is for project developers\. Use -Wno-author to suppress it\.
|
||||
Call Stack \(most recent call first\):
|
||||
CMP0118-WARN-Test15\.cmake:[0-9]+ \(include\)
|
||||
CMakeLists\.txt:[0-9]+ \(include\)
|
||||
This warning is for project developers\. Use -Wno-author to suppress it\.
|
||||
This warning is for project developers\. Use -Wno-author or -Wno-policy to
|
||||
suppress it\.
|
||||
+)+)+
|
||||
Generated_source0\.txt: # 1a # GENERATED = `1`
|
||||
Generated_source0\.txt: # 1b # GENERATED = `1`
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
^CMake Warning \(author\) at CMP0118-Common-Test4\.cmake:[0-9]+ \(set_property\):
|
||||
^CMake Warning \(policy\) at CMP0118-Common-Test4\.cmake:[0-9]+ \(set_property\):
|
||||
Policy CMP0118 is not set: GENERATED sources may be used across directories
|
||||
without manual marking\. Run "cmake --help-policy CMP0118" for policy
|
||||
details\. Use the cmake_policy command to set the policy and suppress this
|
||||
@@ -9,7 +9,8 @@
|
||||
Call Stack \(most recent call first\):
|
||||
CMP0118-WARN-Test4\.cmake:[0-9]+ \(include\)
|
||||
CMakeLists\.txt:[0-9]+ \(include\)
|
||||
This warning is for project developers\. Use -Wno-author to suppress it\.
|
||||
This warning is for project developers\. Use -Wno-author or -Wno-policy to
|
||||
suppress it\.
|
||||
+
|
||||
Generated_with_full_path1\.txt: # 1a # GENERATED = `0`
|
||||
Generated_with_full_path1\.txt: # 1b # GENERATED = `0`
|
||||
@@ -17,7 +18,7 @@ Generated_with_full_path1\.txt: # 2a # GENERATED = `0`
|
||||
Generated_with_full_path1\.txt: # 2b # GENERATED = `0`
|
||||
Generated_with_full_path1\.txt: # 3a # GENERATED = `0`
|
||||
Generated_with_full_path1\.txt: # 3b # GENERATED = `0`
|
||||
CMake Warning \(author\) at CMP0118-Common-Test4\.cmake:[0-9]+ \(set_property\):
|
||||
CMake Warning \(policy\) at CMP0118-Common-Test4\.cmake:[0-9]+ \(set_property\):
|
||||
Policy CMP0118 is not set: GENERATED sources may be used across directories
|
||||
without manual marking\. Run "cmake --help-policy CMP0118" for policy
|
||||
details\. Use the cmake_policy command to set the policy and suppress this
|
||||
@@ -28,7 +29,8 @@ CMake Warning \(author\) at CMP0118-Common-Test4\.cmake:[0-9]+ \(set_property\):
|
||||
Call Stack \(most recent call first\):
|
||||
CMP0118-WARN-Test4\.cmake:[0-9]+ \(include\)
|
||||
CMakeLists\.txt:[0-9]+ \(include\)
|
||||
This warning is for project developers\. Use -Wno-author to suppress it\.
|
||||
This warning is for project developers\. Use -Wno-author or -Wno-policy to
|
||||
suppress it\.
|
||||
+
|
||||
Generated_with_full_path2\.txt: # 1a # GENERATED = `0`
|
||||
Generated_with_full_path2\.txt: # 1b # GENERATED = `0`
|
||||
@@ -36,7 +38,7 @@ Generated_with_full_path2\.txt: # 2a # GENERATED = `0`
|
||||
Generated_with_full_path2\.txt: # 2b # GENERATED = `0`
|
||||
Generated_with_full_path2\.txt: # 3a # GENERATED = `0`
|
||||
Generated_with_full_path2\.txt: # 3b # GENERATED = `0`
|
||||
CMake Warning \(author\) at CMP0118-Common-Test4\.cmake:[0-9]+ \(set_property\):
|
||||
CMake Warning \(policy\) at CMP0118-Common-Test4\.cmake:[0-9]+ \(set_property\):
|
||||
Policy CMP0118 is not set: GENERATED sources may be used across directories
|
||||
without manual marking\. Run "cmake --help-policy CMP0118" for policy
|
||||
details\. Use the cmake_policy command to set the policy and suppress this
|
||||
@@ -47,7 +49,8 @@ CMake Warning \(author\) at CMP0118-Common-Test4\.cmake:[0-9]+ \(set_property\):
|
||||
Call Stack \(most recent call first\):
|
||||
CMP0118-WARN-Test4\.cmake:[0-9]+ \(include\)
|
||||
CMakeLists\.txt:[0-9]+ \(include\)
|
||||
This warning is for project developers\. Use -Wno-author to suppress it\.
|
||||
This warning is for project developers\. Use -Wno-author or -Wno-policy to
|
||||
suppress it\.
|
||||
+
|
||||
Generated_with_full_path3\.txt: # 1a # GENERATED = `0`
|
||||
Generated_with_full_path3\.txt: # 1b # GENERATED = `0`
|
||||
@@ -55,7 +58,7 @@ Generated_with_full_path3\.txt: # 2a # GENERATED = `0`
|
||||
Generated_with_full_path3\.txt: # 2b # GENERATED = `0`
|
||||
Generated_with_full_path3\.txt: # 3a # GENERATED = `0`
|
||||
Generated_with_full_path3\.txt: # 3b # GENERATED = `0`
|
||||
CMake Warning \(author\) at CMP0118-Common-Test4\.cmake:[0-9]+ \(set_property\):
|
||||
CMake Warning \(policy\) at CMP0118-Common-Test4\.cmake:[0-9]+ \(set_property\):
|
||||
Policy CMP0118 is not set: GENERATED sources may be used across directories
|
||||
without manual marking\. Run "cmake --help-policy CMP0118" for policy
|
||||
details\. Use the cmake_policy command to set the policy and suppress this
|
||||
@@ -66,7 +69,8 @@ CMake Warning \(author\) at CMP0118-Common-Test4\.cmake:[0-9]+ \(set_property\):
|
||||
Call Stack \(most recent call first\):
|
||||
CMP0118-WARN-Test4\.cmake:[0-9]+ \(include\)
|
||||
CMakeLists\.txt:[0-9]+ \(include\)
|
||||
This warning is for project developers\. Use -Wno-author to suppress it\.
|
||||
This warning is for project developers\. Use -Wno-author or -Wno-policy to
|
||||
suppress it\.
|
||||
+
|
||||
Generated_with_relative_path1\.txt: # 1a # GENERATED = `0`
|
||||
Generated_with_relative_path1\.txt: # 1b # GENERATED = `0`
|
||||
@@ -74,7 +78,7 @@ Generated_with_relative_path1\.txt: # 2a # GENERATED = `0`
|
||||
Generated_with_relative_path1\.txt: # 2b # GENERATED = `0`
|
||||
Generated_with_relative_path1\.txt: # 3a # GENERATED = `0`
|
||||
Generated_with_relative_path1\.txt: # 3b # GENERATED = `0`
|
||||
CMake Warning \(author\) at CMP0118-Common-Test4\.cmake:[0-9]+ \(set_property\):
|
||||
CMake Warning \(policy\) at CMP0118-Common-Test4\.cmake:[0-9]+ \(set_property\):
|
||||
Policy CMP0118 is not set: GENERATED sources may be used across directories
|
||||
without manual marking\. Run "cmake --help-policy CMP0118" for policy
|
||||
details\. Use the cmake_policy command to set the policy and suppress this
|
||||
@@ -85,7 +89,8 @@ CMake Warning \(author\) at CMP0118-Common-Test4\.cmake:[0-9]+ \(set_property\):
|
||||
Call Stack \(most recent call first\):
|
||||
CMP0118-WARN-Test4\.cmake:[0-9]+ \(include\)
|
||||
CMakeLists\.txt:[0-9]+ \(include\)
|
||||
This warning is for project developers\. Use -Wno-author to suppress it\.
|
||||
This warning is for project developers\. Use -Wno-author or -Wno-policy to
|
||||
suppress it\.
|
||||
+
|
||||
Generated_with_relative_path2\.txt: # 1a # GENERATED = `0`
|
||||
Generated_with_relative_path2\.txt: # 1b # GENERATED = `0`
|
||||
@@ -93,7 +98,7 @@ Generated_with_relative_path2\.txt: # 2a # GENERATED = `0`
|
||||
Generated_with_relative_path2\.txt: # 2b # GENERATED = `0`
|
||||
Generated_with_relative_path2\.txt: # 3a # GENERATED = `0`
|
||||
Generated_with_relative_path2\.txt: # 3b # GENERATED = `0`
|
||||
CMake Warning \(author\) at CMP0118-Common-Test4\.cmake:[0-9]+ \(set_property\):
|
||||
CMake Warning \(policy\) at CMP0118-Common-Test4\.cmake:[0-9]+ \(set_property\):
|
||||
Policy CMP0118 is not set: GENERATED sources may be used across directories
|
||||
without manual marking\. Run "cmake --help-policy CMP0118" for policy
|
||||
details\. Use the cmake_policy command to set the policy and suppress this
|
||||
@@ -104,7 +109,8 @@ CMake Warning \(author\) at CMP0118-Common-Test4\.cmake:[0-9]+ \(set_property\):
|
||||
Call Stack \(most recent call first\):
|
||||
CMP0118-WARN-Test4\.cmake:[0-9]+ \(include\)
|
||||
CMakeLists\.txt:[0-9]+ \(include\)
|
||||
This warning is for project developers\. Use -Wno-author to suppress it\.
|
||||
This warning is for project developers\. Use -Wno-author or -Wno-policy to
|
||||
suppress it\.
|
||||
+
|
||||
Generated_with_relative_path3\.txt: # 1a # GENERATED = `0`
|
||||
Generated_with_relative_path3\.txt: # 1b # GENERATED = `0`
|
||||
@@ -112,7 +118,7 @@ Generated_with_relative_path3\.txt: # 2a # GENERATED = `0`
|
||||
Generated_with_relative_path3\.txt: # 2b # GENERATED = `0`
|
||||
Generated_with_relative_path3\.txt: # 3a # GENERATED = `0`
|
||||
Generated_with_relative_path3\.txt: # 3b # GENERATED = `0`
|
||||
CMake Warning \(author\) at CMP0118-Common-Test4\.cmake:[0-9]+ \(set_property\):
|
||||
CMake Warning \(policy\) at CMP0118-Common-Test4\.cmake:[0-9]+ \(set_property\):
|
||||
Policy CMP0118 is not set: GENERATED sources may be used across directories
|
||||
without manual marking\. Run "cmake --help-policy CMP0118" for policy
|
||||
details\. Use the cmake_policy command to set the policy and suppress this
|
||||
@@ -123,7 +129,8 @@ CMake Warning \(author\) at CMP0118-Common-Test4\.cmake:[0-9]+ \(set_property\):
|
||||
Call Stack \(most recent call first\):
|
||||
CMP0118-WARN-Test4\.cmake:[0-9]+ \(include\)
|
||||
CMakeLists\.txt:[0-9]+ \(include\)
|
||||
This warning is for project developers\. Use -Wno-author to suppress it\.
|
||||
This warning is for project developers\. Use -Wno-author or -Wno-policy to
|
||||
suppress it\.
|
||||
+
|
||||
Generated_with_full_source_path1\.txt: # 1a # GENERATED = `0`
|
||||
Generated_with_full_source_path1\.txt: # 1b # GENERATED = `0`
|
||||
@@ -131,7 +138,7 @@ Generated_with_full_source_path1\.txt: # 2a # GENERATED = `0`
|
||||
Generated_with_full_source_path1\.txt: # 2b # GENERATED = `0`
|
||||
Generated_with_full_source_path1\.txt: # 3a # GENERATED = `0`
|
||||
Generated_with_full_source_path1\.txt: # 3b # GENERATED = `0`
|
||||
CMake Warning \(author\) at CMP0118-Common-Test4\.cmake:[0-9]+ \(set_property\):
|
||||
CMake Warning \(policy\) at CMP0118-Common-Test4\.cmake:[0-9]+ \(set_property\):
|
||||
Policy CMP0118 is not set: GENERATED sources may be used across directories
|
||||
without manual marking\. Run "cmake --help-policy CMP0118" for policy
|
||||
details\. Use the cmake_policy command to set the policy and suppress this
|
||||
@@ -142,7 +149,8 @@ CMake Warning \(author\) at CMP0118-Common-Test4\.cmake:[0-9]+ \(set_property\):
|
||||
Call Stack \(most recent call first\):
|
||||
CMP0118-WARN-Test4\.cmake:[0-9]+ \(include\)
|
||||
CMakeLists\.txt:[0-9]+ \(include\)
|
||||
This warning is for project developers\. Use -Wno-author to suppress it\.
|
||||
This warning is for project developers\. Use -Wno-author or -Wno-policy to
|
||||
suppress it\.
|
||||
+
|
||||
Generated_with_full_source_path2\.txt: # 1a # GENERATED = `0`
|
||||
Generated_with_full_source_path2\.txt: # 1b # GENERATED = `0`
|
||||
@@ -150,7 +158,7 @@ Generated_with_full_source_path2\.txt: # 2a # GENERATED = `0`
|
||||
Generated_with_full_source_path2\.txt: # 2b # GENERATED = `0`
|
||||
Generated_with_full_source_path2\.txt: # 3a # GENERATED = `0`
|
||||
Generated_with_full_source_path2\.txt: # 3b # GENERATED = `0`
|
||||
CMake Warning \(author\) at CMP0118-Common-Test4\.cmake:[0-9]+ \(set_property\):
|
||||
CMake Warning \(policy\) at CMP0118-Common-Test4\.cmake:[0-9]+ \(set_property\):
|
||||
Policy CMP0118 is not set: GENERATED sources may be used across directories
|
||||
without manual marking\. Run "cmake --help-policy CMP0118" for policy
|
||||
details\. Use the cmake_policy command to set the policy and suppress this
|
||||
@@ -161,7 +169,8 @@ CMake Warning \(author\) at CMP0118-Common-Test4\.cmake:[0-9]+ \(set_property\):
|
||||
Call Stack \(most recent call first\):
|
||||
CMP0118-WARN-Test4\.cmake:[0-9]+ \(include\)
|
||||
CMakeLists\.txt:[0-9]+ \(include\)
|
||||
This warning is for project developers\. Use -Wno-author to suppress it\.
|
||||
This warning is for project developers\. Use -Wno-author or -Wno-policy to
|
||||
suppress it\.
|
||||
+
|
||||
Generated_with_full_source_path3\.txt: # 1a # GENERATED = `0`
|
||||
Generated_with_full_source_path3\.txt: # 1b # GENERATED = `0`
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
^CMake Warning \(author\) at CMP0118-Common-Test4b\.cmake:[0-9]+ \(set_property\):
|
||||
^CMake Warning \(policy\) at CMP0118-Common-Test4b\.cmake:[0-9]+ \(set_property\):
|
||||
Policy CMP0118 is not set: GENERATED sources may be used across directories
|
||||
without manual marking\. Run "cmake --help-policy CMP0118" for policy
|
||||
details\. Use the cmake_policy command to set the policy and suppress this
|
||||
@@ -9,7 +9,8 @@
|
||||
Call Stack \(most recent call first\):
|
||||
CMP0118-WARN-Test4b\.cmake:[0-9]+ \(include\)
|
||||
CMakeLists\.txt:[0-9]+ \(include\)
|
||||
This warning is for project developers\. Use -Wno-author to suppress it\.
|
||||
This warning is for project developers\. Use -Wno-author or -Wno-policy to
|
||||
suppress it\.
|
||||
+
|
||||
Generated_with_full_path1\.txt: # 1a # GENERATED = `0`
|
||||
Generated_with_full_path1\.txt: # 1b # GENERATED = `0`
|
||||
@@ -17,7 +18,7 @@ Generated_with_full_path1\.txt: # 2a # GENERATED = `0`
|
||||
Generated_with_full_path1\.txt: # 2b # GENERATED = `0`
|
||||
Generated_with_full_path1\.txt: # 3a # GENERATED = `0`
|
||||
Generated_with_full_path1\.txt: # 3b # GENERATED = `0`
|
||||
CMake Warning \(author\) at CMP0118-Common-Test4b\.cmake:[0-9]+ \(set_property\):
|
||||
CMake Warning \(policy\) at CMP0118-Common-Test4b\.cmake:[0-9]+ \(set_property\):
|
||||
Policy CMP0118 is not set: GENERATED sources may be used across directories
|
||||
without manual marking\. Run "cmake --help-policy CMP0118" for policy
|
||||
details\. Use the cmake_policy command to set the policy and suppress this
|
||||
@@ -28,7 +29,8 @@ CMake Warning \(author\) at CMP0118-Common-Test4b\.cmake:[0-9]+ \(set_property\)
|
||||
Call Stack \(most recent call first\):
|
||||
CMP0118-WARN-Test4b\.cmake:[0-9]+ \(include\)
|
||||
CMakeLists\.txt:[0-9]+ \(include\)
|
||||
This warning is for project developers\. Use -Wno-author to suppress it\.
|
||||
This warning is for project developers\. Use -Wno-author or -Wno-policy to
|
||||
suppress it\.
|
||||
+
|
||||
Generated_with_full_path2\.txt: # 1a # GENERATED = `0`
|
||||
Generated_with_full_path2\.txt: # 1b # GENERATED = `0`
|
||||
@@ -36,7 +38,7 @@ Generated_with_full_path2\.txt: # 2a # GENERATED = `0`
|
||||
Generated_with_full_path2\.txt: # 2b # GENERATED = `0`
|
||||
Generated_with_full_path2\.txt: # 3a # GENERATED = `0`
|
||||
Generated_with_full_path2\.txt: # 3b # GENERATED = `0`
|
||||
CMake Warning \(author\) at CMP0118-Common-Test4b\.cmake:[0-9]+ \(set_property\):
|
||||
CMake Warning \(policy\) at CMP0118-Common-Test4b\.cmake:[0-9]+ \(set_property\):
|
||||
Policy CMP0118 is not set: GENERATED sources may be used across directories
|
||||
without manual marking\. Run "cmake --help-policy CMP0118" for policy
|
||||
details\. Use the cmake_policy command to set the policy and suppress this
|
||||
@@ -47,7 +49,8 @@ CMake Warning \(author\) at CMP0118-Common-Test4b\.cmake:[0-9]+ \(set_property\)
|
||||
Call Stack \(most recent call first\):
|
||||
CMP0118-WARN-Test4b\.cmake:[0-9]+ \(include\)
|
||||
CMakeLists\.txt:[0-9]+ \(include\)
|
||||
This warning is for project developers\. Use -Wno-author to suppress it\.
|
||||
This warning is for project developers\. Use -Wno-author or -Wno-policy to
|
||||
suppress it\.
|
||||
+
|
||||
Generated_with_full_path3\.txt: # 1a # GENERATED = `0`
|
||||
Generated_with_full_path3\.txt: # 1b # GENERATED = `0`
|
||||
@@ -55,7 +58,7 @@ Generated_with_full_path3\.txt: # 2a # GENERATED = `0`
|
||||
Generated_with_full_path3\.txt: # 2b # GENERATED = `0`
|
||||
Generated_with_full_path3\.txt: # 3a # GENERATED = `0`
|
||||
Generated_with_full_path3\.txt: # 3b # GENERATED = `0`
|
||||
CMake Warning \(author\) at CMP0118-Common-Test4b\.cmake:[0-9]+ \(set_property\):
|
||||
CMake Warning \(policy\) at CMP0118-Common-Test4b\.cmake:[0-9]+ \(set_property\):
|
||||
Policy CMP0118 is not set: GENERATED sources may be used across directories
|
||||
without manual marking\. Run "cmake --help-policy CMP0118" for policy
|
||||
details\. Use the cmake_policy command to set the policy and suppress this
|
||||
@@ -66,7 +69,8 @@ CMake Warning \(author\) at CMP0118-Common-Test4b\.cmake:[0-9]+ \(set_property\)
|
||||
Call Stack \(most recent call first\):
|
||||
CMP0118-WARN-Test4b\.cmake:[0-9]+ \(include\)
|
||||
CMakeLists\.txt:[0-9]+ \(include\)
|
||||
This warning is for project developers\. Use -Wno-author to suppress it\.
|
||||
This warning is for project developers\. Use -Wno-author or -Wno-policy to
|
||||
suppress it\.
|
||||
+
|
||||
Generated_with_relative_path1\.txt: # 1a # GENERATED = `0`
|
||||
Generated_with_relative_path1\.txt: # 1b # GENERATED = `0`
|
||||
@@ -74,7 +78,7 @@ Generated_with_relative_path1\.txt: # 2a # GENERATED = `0`
|
||||
Generated_with_relative_path1\.txt: # 2b # GENERATED = `0`
|
||||
Generated_with_relative_path1\.txt: # 3a # GENERATED = `0`
|
||||
Generated_with_relative_path1\.txt: # 3b # GENERATED = `0`
|
||||
CMake Warning \(author\) at CMP0118-Common-Test4b\.cmake:[0-9]+ \(set_property\):
|
||||
CMake Warning \(policy\) at CMP0118-Common-Test4b\.cmake:[0-9]+ \(set_property\):
|
||||
Policy CMP0118 is not set: GENERATED sources may be used across directories
|
||||
without manual marking\. Run "cmake --help-policy CMP0118" for policy
|
||||
details\. Use the cmake_policy command to set the policy and suppress this
|
||||
@@ -85,7 +89,8 @@ CMake Warning \(author\) at CMP0118-Common-Test4b\.cmake:[0-9]+ \(set_property\)
|
||||
Call Stack \(most recent call first\):
|
||||
CMP0118-WARN-Test4b\.cmake:[0-9]+ \(include\)
|
||||
CMakeLists\.txt:[0-9]+ \(include\)
|
||||
This warning is for project developers\. Use -Wno-author to suppress it\.
|
||||
This warning is for project developers\. Use -Wno-author or -Wno-policy to
|
||||
suppress it\.
|
||||
+
|
||||
Generated_with_relative_path2\.txt: # 1a # GENERATED = `0`
|
||||
Generated_with_relative_path2\.txt: # 1b # GENERATED = `0`
|
||||
@@ -93,7 +98,7 @@ Generated_with_relative_path2\.txt: # 2a # GENERATED = `0`
|
||||
Generated_with_relative_path2\.txt: # 2b # GENERATED = `0`
|
||||
Generated_with_relative_path2\.txt: # 3a # GENERATED = `0`
|
||||
Generated_with_relative_path2\.txt: # 3b # GENERATED = `0`
|
||||
CMake Warning \(author\) at CMP0118-Common-Test4b\.cmake:[0-9]+ \(set_property\):
|
||||
CMake Warning \(policy\) at CMP0118-Common-Test4b\.cmake:[0-9]+ \(set_property\):
|
||||
Policy CMP0118 is not set: GENERATED sources may be used across directories
|
||||
without manual marking\. Run "cmake --help-policy CMP0118" for policy
|
||||
details\. Use the cmake_policy command to set the policy and suppress this
|
||||
@@ -104,7 +109,8 @@ CMake Warning \(author\) at CMP0118-Common-Test4b\.cmake:[0-9]+ \(set_property\)
|
||||
Call Stack \(most recent call first\):
|
||||
CMP0118-WARN-Test4b\.cmake:[0-9]+ \(include\)
|
||||
CMakeLists\.txt:[0-9]+ \(include\)
|
||||
This warning is for project developers\. Use -Wno-author to suppress it\.
|
||||
This warning is for project developers\. Use -Wno-author or -Wno-policy to
|
||||
suppress it\.
|
||||
+
|
||||
Generated_with_relative_path3\.txt: # 1a # GENERATED = `0`
|
||||
Generated_with_relative_path3\.txt: # 1b # GENERATED = `0`
|
||||
@@ -112,7 +118,7 @@ Generated_with_relative_path3\.txt: # 2a # GENERATED = `0`
|
||||
Generated_with_relative_path3\.txt: # 2b # GENERATED = `0`
|
||||
Generated_with_relative_path3\.txt: # 3a # GENERATED = `0`
|
||||
Generated_with_relative_path3\.txt: # 3b # GENERATED = `0`
|
||||
CMake Warning \(author\) at CMP0118-Common-Test4b\.cmake:[0-9]+ \(set_property\):
|
||||
CMake Warning \(policy\) at CMP0118-Common-Test4b\.cmake:[0-9]+ \(set_property\):
|
||||
Policy CMP0118 is not set: GENERATED sources may be used across directories
|
||||
without manual marking\. Run "cmake --help-policy CMP0118" for policy
|
||||
details\. Use the cmake_policy command to set the policy and suppress this
|
||||
@@ -123,7 +129,8 @@ CMake Warning \(author\) at CMP0118-Common-Test4b\.cmake:[0-9]+ \(set_property\)
|
||||
Call Stack \(most recent call first\):
|
||||
CMP0118-WARN-Test4b\.cmake:[0-9]+ \(include\)
|
||||
CMakeLists\.txt:[0-9]+ \(include\)
|
||||
This warning is for project developers\. Use -Wno-author to suppress it\.
|
||||
This warning is for project developers\. Use -Wno-author or -Wno-policy to
|
||||
suppress it\.
|
||||
+
|
||||
Generated_with_full_source_path1\.txt: # 1a # GENERATED = `0`
|
||||
Generated_with_full_source_path1\.txt: # 1b # GENERATED = `0`
|
||||
@@ -131,7 +138,7 @@ Generated_with_full_source_path1\.txt: # 2a # GENERATED = `0`
|
||||
Generated_with_full_source_path1\.txt: # 2b # GENERATED = `0`
|
||||
Generated_with_full_source_path1\.txt: # 3a # GENERATED = `0`
|
||||
Generated_with_full_source_path1\.txt: # 3b # GENERATED = `0`
|
||||
CMake Warning \(author\) at CMP0118-Common-Test4b\.cmake:[0-9]+ \(set_property\):
|
||||
CMake Warning \(policy\) at CMP0118-Common-Test4b\.cmake:[0-9]+ \(set_property\):
|
||||
Policy CMP0118 is not set: GENERATED sources may be used across directories
|
||||
without manual marking\. Run "cmake --help-policy CMP0118" for policy
|
||||
details\. Use the cmake_policy command to set the policy and suppress this
|
||||
@@ -142,7 +149,8 @@ CMake Warning \(author\) at CMP0118-Common-Test4b\.cmake:[0-9]+ \(set_property\)
|
||||
Call Stack \(most recent call first\):
|
||||
CMP0118-WARN-Test4b\.cmake:[0-9]+ \(include\)
|
||||
CMakeLists\.txt:[0-9]+ \(include\)
|
||||
This warning is for project developers\. Use -Wno-author to suppress it\.
|
||||
This warning is for project developers\. Use -Wno-author or -Wno-policy to
|
||||
suppress it\.
|
||||
+
|
||||
Generated_with_full_source_path2\.txt: # 1a # GENERATED = `0`
|
||||
Generated_with_full_source_path2\.txt: # 1b # GENERATED = `0`
|
||||
@@ -150,7 +158,7 @@ Generated_with_full_source_path2\.txt: # 2a # GENERATED = `0`
|
||||
Generated_with_full_source_path2\.txt: # 2b # GENERATED = `0`
|
||||
Generated_with_full_source_path2\.txt: # 3a # GENERATED = `0`
|
||||
Generated_with_full_source_path2\.txt: # 3b # GENERATED = `0`
|
||||
CMake Warning \(author\) at CMP0118-Common-Test4b\.cmake:[0-9]+ \(set_property\):
|
||||
CMake Warning \(policy\) at CMP0118-Common-Test4b\.cmake:[0-9]+ \(set_property\):
|
||||
Policy CMP0118 is not set: GENERATED sources may be used across directories
|
||||
without manual marking\. Run "cmake --help-policy CMP0118" for policy
|
||||
details\. Use the cmake_policy command to set the policy and suppress this
|
||||
@@ -161,7 +169,8 @@ CMake Warning \(author\) at CMP0118-Common-Test4b\.cmake:[0-9]+ \(set_property\)
|
||||
Call Stack \(most recent call first\):
|
||||
CMP0118-WARN-Test4b\.cmake:[0-9]+ \(include\)
|
||||
CMakeLists\.txt:[0-9]+ \(include\)
|
||||
This warning is for project developers\. Use -Wno-author to suppress it\.
|
||||
This warning is for project developers\. Use -Wno-author or -Wno-policy to
|
||||
suppress it\.
|
||||
+
|
||||
Generated_with_full_source_path3\.txt: # 1a # GENERATED = `0`
|
||||
Generated_with_full_source_path3\.txt: # 1b # GENERATED = `0`
|
||||
|
||||
@@ -4,7 +4,7 @@ Generated_with_full_path1\.txt: # 2a # GENERATED = `1`
|
||||
Generated_with_full_path1\.txt: # 2b # GENERATED = `1`
|
||||
Generated_with_full_path1\.txt: # 3a # GENERATED = `0`
|
||||
Generated_with_full_path1\.txt: # 3b # GENERATED = `0`
|
||||
CMake Warning \(author\) at CMP0118-Common-Test5\.cmake:[0-9]+ \(set_property\):
|
||||
CMake Warning \(policy\) at CMP0118-Common-Test5\.cmake:[0-9]+ \(set_property\):
|
||||
Policy CMP0118 is not set: GENERATED sources may be used across directories
|
||||
without manual marking\. Run "cmake --help-policy CMP0118" for policy
|
||||
details\. Use the cmake_policy command to set the policy and suppress this
|
||||
@@ -15,7 +15,8 @@ CMake Warning \(author\) at CMP0118-Common-Test5\.cmake:[0-9]+ \(set_property\):
|
||||
Call Stack \(most recent call first\):
|
||||
CMP0118-WARN-Test5\.cmake:[0-9]+ \(include\)
|
||||
CMakeLists\.txt:[0-9]+ \(include\)
|
||||
This warning is for project developers\. Use -Wno-author to suppress it\.
|
||||
This warning is for project developers\. Use -Wno-author or -Wno-policy to
|
||||
suppress it\.
|
||||
+
|
||||
Generated_with_full_path2\.txt: # 1a # GENERATED = `0`
|
||||
Generated_with_full_path2\.txt: # 1b # GENERATED = `0`
|
||||
@@ -23,7 +24,7 @@ Generated_with_full_path2\.txt: # 2a # GENERATED = `0`
|
||||
Generated_with_full_path2\.txt: # 2b # GENERATED = `0`
|
||||
Generated_with_full_path2\.txt: # 3a # GENERATED = `0`
|
||||
Generated_with_full_path2\.txt: # 3b # GENERATED = `0`
|
||||
CMake Warning \(author\) at CMP0118-Common-Test5\.cmake:[0-9]+ \(set_property\):
|
||||
CMake Warning \(policy\) at CMP0118-Common-Test5\.cmake:[0-9]+ \(set_property\):
|
||||
Policy CMP0118 is not set: GENERATED sources may be used across directories
|
||||
without manual marking\. Run "cmake --help-policy CMP0118" for policy
|
||||
details\. Use the cmake_policy command to set the policy and suppress this
|
||||
@@ -42,7 +43,8 @@ CMake Warning \(author\) at CMP0118-Common-Test5\.cmake:[0-9]+ \(set_property\):
|
||||
Call Stack \(most recent call first\):
|
||||
CMP0118-WARN-Test5\.cmake:[0-9]+ \(include\)
|
||||
CMakeLists\.txt:[0-9]+ \(include\)
|
||||
This warning is for project developers\. Use -Wno-author to suppress it\.
|
||||
This warning is for project developers\. Use -Wno-author or -Wno-policy to
|
||||
suppress it\.
|
||||
+
|
||||
Generated_with_full_path3\.txt: # 1a # GENERATED = `0`
|
||||
Generated_with_full_path3\.txt: # 1b # GENERATED = `0`
|
||||
@@ -56,7 +58,7 @@ Generated_with_relative_path1\.txt: # 2a # GENERATED = `1`
|
||||
Generated_with_relative_path1\.txt: # 2b # GENERATED = `1`
|
||||
Generated_with_relative_path1\.txt: # 3a # GENERATED = `0`
|
||||
Generated_with_relative_path1\.txt: # 3b # GENERATED = `0`
|
||||
CMake Warning \(author\) at CMP0118-Common-Test5\.cmake:[0-9]+ \(set_property\):
|
||||
CMake Warning \(policy\) at CMP0118-Common-Test5\.cmake:[0-9]+ \(set_property\):
|
||||
Policy CMP0118 is not set: GENERATED sources may be used across directories
|
||||
without manual marking\. Run "cmake --help-policy CMP0118" for policy
|
||||
details\. Use the cmake_policy command to set the policy and suppress this
|
||||
@@ -67,7 +69,8 @@ CMake Warning \(author\) at CMP0118-Common-Test5\.cmake:[0-9]+ \(set_property\):
|
||||
Call Stack \(most recent call first\):
|
||||
CMP0118-WARN-Test5\.cmake:[0-9]+ \(include\)
|
||||
CMakeLists\.txt:[0-9]+ \(include\)
|
||||
This warning is for project developers\. Use -Wno-author to suppress it\.
|
||||
This warning is for project developers\. Use -Wno-author or -Wno-policy to
|
||||
suppress it\.
|
||||
+
|
||||
Generated_with_relative_path2\.txt: # 1a # GENERATED = `0`
|
||||
Generated_with_relative_path2\.txt: # 1b # GENERATED = `0`
|
||||
@@ -75,7 +78,7 @@ Generated_with_relative_path2\.txt: # 2a # GENERATED = `0`
|
||||
Generated_with_relative_path2\.txt: # 2b # GENERATED = `0`
|
||||
Generated_with_relative_path2\.txt: # 3a # GENERATED = `0`
|
||||
Generated_with_relative_path2\.txt: # 3b # GENERATED = `0`
|
||||
CMake Warning \(author\) at CMP0118-Common-Test5\.cmake:[0-9]+ \(set_property\):
|
||||
CMake Warning \(policy\) at CMP0118-Common-Test5\.cmake:[0-9]+ \(set_property\):
|
||||
Policy CMP0118 is not set: GENERATED sources may be used across directories
|
||||
without manual marking\. Run "cmake --help-policy CMP0118" for policy
|
||||
details\. Use the cmake_policy command to set the policy and suppress this
|
||||
@@ -94,7 +97,8 @@ CMake Warning \(author\) at CMP0118-Common-Test5\.cmake:[0-9]+ \(set_property\):
|
||||
Call Stack \(most recent call first\):
|
||||
CMP0118-WARN-Test5\.cmake:[0-9]+ \(include\)
|
||||
CMakeLists\.txt:[0-9]+ \(include\)
|
||||
This warning is for project developers\. Use -Wno-author to suppress it\.
|
||||
This warning is for project developers\. Use -Wno-author or -Wno-policy to
|
||||
suppress it\.
|
||||
+
|
||||
Generated_with_relative_path3\.txt: # 1a # GENERATED = `0`
|
||||
Generated_with_relative_path3\.txt: # 1b # GENERATED = `0`
|
||||
@@ -108,7 +112,7 @@ Generated_with_full_source_path1\.txt: # 2a # GENERATED = `1`
|
||||
Generated_with_full_source_path1\.txt: # 2b # GENERATED = `1`
|
||||
Generated_with_full_source_path1\.txt: # 3a # GENERATED = `1`
|
||||
Generated_with_full_source_path1\.txt: # 3b # GENERATED = `1`
|
||||
CMake Warning \(author\) at CMP0118-Common-Test5\.cmake:[0-9]+ \(set_property\):
|
||||
CMake Warning \(policy\) at CMP0118-Common-Test5\.cmake:[0-9]+ \(set_property\):
|
||||
Policy CMP0118 is not set: GENERATED sources may be used across directories
|
||||
without manual marking\. Run "cmake --help-policy CMP0118" for policy
|
||||
details\. Use the cmake_policy command to set the policy and suppress this
|
||||
@@ -119,7 +123,8 @@ CMake Warning \(author\) at CMP0118-Common-Test5\.cmake:[0-9]+ \(set_property\):
|
||||
Call Stack \(most recent call first\):
|
||||
CMP0118-WARN-Test5\.cmake:[0-9]+ \(include\)
|
||||
CMakeLists\.txt:[0-9]+ \(include\)
|
||||
This warning is for project developers\. Use -Wno-author to suppress it\.
|
||||
This warning is for project developers\. Use -Wno-author or -Wno-policy to
|
||||
suppress it\.
|
||||
+
|
||||
Generated_with_full_source_path2\.txt: # 1a # GENERATED = `0`
|
||||
Generated_with_full_source_path2\.txt: # 1b # GENERATED = `0`
|
||||
@@ -127,7 +132,7 @@ Generated_with_full_source_path2\.txt: # 2a # GENERATED = `0`
|
||||
Generated_with_full_source_path2\.txt: # 2b # GENERATED = `0`
|
||||
Generated_with_full_source_path2\.txt: # 3a # GENERATED = `0`
|
||||
Generated_with_full_source_path2\.txt: # 3b # GENERATED = `0`
|
||||
CMake Warning \(author\) at CMP0118-Common-Test5\.cmake:[0-9]+ \(set_property\):
|
||||
CMake Warning \(policy\) at CMP0118-Common-Test5\.cmake:[0-9]+ \(set_property\):
|
||||
Policy CMP0118 is not set: GENERATED sources may be used across directories
|
||||
without manual marking\. Run "cmake --help-policy CMP0118" for policy
|
||||
details\. Use the cmake_policy command to set the policy and suppress this
|
||||
@@ -146,7 +151,8 @@ CMake Warning \(author\) at CMP0118-Common-Test5\.cmake:[0-9]+ \(set_property\):
|
||||
Call Stack \(most recent call first\):
|
||||
CMP0118-WARN-Test5\.cmake:[0-9]+ \(include\)
|
||||
CMakeLists\.txt:[0-9]+ \(include\)
|
||||
This warning is for project developers\. Use -Wno-author to suppress it\.
|
||||
This warning is for project developers\. Use -Wno-author or -Wno-policy to
|
||||
suppress it\.
|
||||
+
|
||||
Generated_with_full_source_path3\.txt: # 1a # GENERATED = `0`
|
||||
Generated_with_full_source_path3\.txt: # 1b # GENERATED = `0`
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
^((CMake Warning \(author\) at subdir-Common-Test7/CMakeLists\.txt:[0-9]+ \(set_property\):
|
||||
^((CMake Warning \(policy\) at subdir-Common-Test7/CMakeLists\.txt:[0-9]+ \(set_property\):
|
||||
Policy CMP0118 is not set: GENERATED sources may be used across directories
|
||||
without manual marking\. Run "cmake --help-policy CMP0118" for policy
|
||||
details\. Use the cmake_policy command to set the policy and suppress this
|
||||
@@ -6,9 +6,10 @@
|
||||
|
||||
Unsetting property 'GENERATED' will not be allowed under policy CMP0118!
|
||||
|
||||
This warning is for project developers\. Use -Wno-author to suppress it\.
|
||||
This warning is for project developers\. Use -Wno-author or -Wno-policy to
|
||||
suppress it\.
|
||||
+)+
|
||||
(CMake Warning \(author\) at CMP0118-Common-Test7\.cmake:[0-9]+ \(add_subdirectory\):
|
||||
(CMake Warning \(policy\) at CMP0118-Common-Test7\.cmake:[0-9]+ \(add_subdirectory\):
|
||||
Policy CMP0118 is not set: GENERATED sources may be used across directories
|
||||
without manual marking\. Run "cmake --help-policy CMP0118" for policy
|
||||
details\. Use the cmake_policy command to set the policy and suppress this
|
||||
@@ -19,7 +20,8 @@ This warning is for project developers\. Use -Wno-author to suppress it\.
|
||||
Call Stack \(most recent call first\):
|
||||
CMP0118-WARN-Test7\.cmake:[0-9]+ \(include\)
|
||||
CMakeLists\.txt:[0-9]+ \(include\)
|
||||
This warning is for project developers\. Use -Wno-author to suppress it\.
|
||||
This warning is for project developers\. Use -Wno-author or -Wno-policy to
|
||||
suppress it\.
|
||||
+)+)+
|
||||
Generated_source1\.txt: # 1a # GENERATED = `1`
|
||||
Generated_source1\.txt: # 1b # GENERATED = `1`
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
^((CMake Warning \(author\) at subdir-Common-Test9/CMakeLists\.txt:[0-9]+ \(set_property\):
|
||||
^((CMake Warning \(policy\) at subdir-Common-Test9/CMakeLists\.txt:[0-9]+ \(set_property\):
|
||||
Policy CMP0118 is not set: GENERATED sources may be used across directories
|
||||
without manual marking\. Run "cmake --help-policy CMP0118" for policy
|
||||
details\. Use the cmake_policy command to set the policy and suppress this
|
||||
@@ -6,9 +6,10 @@
|
||||
|
||||
Unsetting property 'GENERATED' will not be allowed under policy CMP0118!
|
||||
|
||||
This warning is for project developers\. Use -Wno-author to suppress it\.
|
||||
This warning is for project developers\. Use -Wno-author or -Wno-policy to
|
||||
suppress it\.
|
||||
+)+
|
||||
(CMake Warning \(author\) at CMP0118-Common-Test9\.cmake:[0-9]+ \(add_subdirectory\):
|
||||
(CMake Warning \(policy\) at CMP0118-Common-Test9\.cmake:[0-9]+ \(add_subdirectory\):
|
||||
Policy CMP0118 is not set: GENERATED sources may be used across directories
|
||||
without manual marking\. Run "cmake --help-policy CMP0118" for policy
|
||||
details\. Use the cmake_policy command to set the policy and suppress this
|
||||
@@ -19,7 +20,8 @@ This warning is for project developers\. Use -Wno-author to suppress it\.
|
||||
Call Stack \(most recent call first\):
|
||||
CMP0118-WARN-Test9\.cmake:[0-9]+ \(include\)
|
||||
CMakeLists\.txt:[0-9]+ \(include\)
|
||||
This warning is for project developers\. Use -Wno-author to suppress it\.
|
||||
This warning is for project developers\. Use -Wno-author or -Wno-policy to
|
||||
suppress it\.
|
||||
+)+)+
|
||||
Generated_source1\.txt: # 1a # GENERATED = `0`
|
||||
Generated_source1\.txt: # 1b # GENERATED = `0`
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
CMake Warning \(author\) at CMP0121-ERANGE-Common\.cmake:3 \(list\):
|
||||
CMake Warning \(policy\) at CMP0121-ERANGE-Common\.cmake:3 \(list\):
|
||||
Policy CMP0121 is not set: The list\(\) command now validates parsing of
|
||||
index arguments\. Run "cmake --help-policy CMP0121" for policy details\.
|
||||
Use the cmake_policy command to set the policy and suppress this warning\.
|
||||
@@ -6,7 +6,8 @@ CMake Warning \(author\) at CMP0121-ERANGE-Common\.cmake:3 \(list\):
|
||||
Call Stack \(most recent call first\):
|
||||
CMP0121-ERANGE-WARN\.cmake:2 \(include\)
|
||||
CMakeLists\.txt:3 \(include\)
|
||||
This warning is for project developers\. Use -Wno-author to suppress it\.
|
||||
This warning is for project developers\. Use -Wno-author or -Wno-policy to
|
||||
suppress it\.
|
||||
.*
|
||||
CMake Error at CMP0121-ERANGE-Common\.cmake:3 \(list\):
|
||||
list index: (-2147483648|2147483647) out of range \(-5, 4\)
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
CMake Warning \(author\) at CMP0121-GET-Common\.cmake:3 \(list\):
|
||||
CMake Warning \(policy\) at CMP0121-GET-Common\.cmake:3 \(list\):
|
||||
Policy CMP0121 is not set: The list\(\) command now validates parsing of
|
||||
index arguments\. Run "cmake --help-policy CMP0121" for policy details\.
|
||||
Use the cmake_policy command to set the policy and suppress this warning\.
|
||||
@@ -6,6 +6,7 @@ CMake Warning \(author\) at CMP0121-GET-Common\.cmake:3 \(list\):
|
||||
Call Stack \(most recent call first\):
|
||||
CMP0121-GET-WARN\.cmake:2 \(include\)
|
||||
CMakeLists\.txt:3 \(include\)
|
||||
This warning is for project developers\. Use -Wno-author to suppress it\.
|
||||
This warning is for project developers\. Use -Wno-author or -Wno-policy to
|
||||
suppress it\.
|
||||
|
||||
GET: -->a;c<--
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
CMake Warning \(author\) at CMP0121-INSERT-Common\.cmake:3 \(list\):
|
||||
CMake Warning \(policy\) at CMP0121-INSERT-Common\.cmake:3 \(list\):
|
||||
Policy CMP0121 is not set: The list\(\) command now validates parsing of
|
||||
index arguments\. Run "cmake --help-policy CMP0121" for policy details\.
|
||||
Use the cmake_policy command to set the policy and suppress this warning\.
|
||||
@@ -6,6 +6,7 @@ CMake Warning \(author\) at CMP0121-INSERT-Common\.cmake:3 \(list\):
|
||||
Call Stack \(most recent call first\):
|
||||
CMP0121-INSERT-WARN\.cmake:2 \(include\)
|
||||
CMakeLists\.txt:3 \(include\)
|
||||
This warning is for project developers\. Use -Wno-author to suppress it\.
|
||||
This warning is for project developers\. Use -Wno-author or -Wno-policy to
|
||||
suppress it\.
|
||||
|
||||
INSERT: -->new;a;b;c;d;e<--
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
CMake Warning \(author\) at CMP0121-REMOVE_AT-Common\.cmake:3 \(list\):
|
||||
CMake Warning \(policy\) at CMP0121-REMOVE_AT-Common\.cmake:3 \(list\):
|
||||
Policy CMP0121 is not set: The list\(\) command now validates parsing of
|
||||
index arguments\. Run "cmake --help-policy CMP0121" for policy details\.
|
||||
Use the cmake_policy command to set the policy and suppress this warning\.
|
||||
@@ -6,6 +6,7 @@ CMake Warning \(author\) at CMP0121-REMOVE_AT-Common\.cmake:3 \(list\):
|
||||
Call Stack \(most recent call first\):
|
||||
CMP0121-REMOVE_AT-WARN\.cmake:2 \(include\)
|
||||
CMakeLists\.txt:3 \(include\)
|
||||
This warning is for project developers\. Use -Wno-author to suppress it\.
|
||||
This warning is for project developers\. Use -Wno-author or -Wno-policy to
|
||||
suppress it\.
|
||||
|
||||
REMOVE_AT: -->b;c;d;e<--
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
CMake Warning \(author\) at CMP0121-SUBLIST-length-Common\.cmake:3 \(list\):
|
||||
CMake Warning \(policy\) at CMP0121-SUBLIST-length-Common\.cmake:3 \(list\):
|
||||
Policy CMP0121 is not set: The list\(\) command now validates parsing of
|
||||
index arguments\. Run "cmake --help-policy CMP0121" for policy details\.
|
||||
Use the cmake_policy command to set the policy and suppress this warning\.
|
||||
@@ -6,6 +6,7 @@ CMake Warning \(author\) at CMP0121-SUBLIST-length-Common\.cmake:3 \(list\):
|
||||
Call Stack \(most recent call first\):
|
||||
CMP0121-SUBLIST-length-WARN\.cmake:2 \(include\)
|
||||
CMakeLists\.txt:3 \(include\)
|
||||
This warning is for project developers\. Use -Wno-author to suppress it\.
|
||||
This warning is for project developers\. Use -Wno-author or -Wno-policy to
|
||||
suppress it\.
|
||||
|
||||
SUBLIST-length: --><--
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
CMake Warning \(author\) at CMP0121-SUBLIST-start-Common\.cmake:3 \(list\):
|
||||
CMake Warning \(policy\) at CMP0121-SUBLIST-start-Common\.cmake:3 \(list\):
|
||||
Policy CMP0121 is not set: The list\(\) command now validates parsing of
|
||||
index arguments\. Run "cmake --help-policy CMP0121" for policy details\.
|
||||
Use the cmake_policy command to set the policy and suppress this warning\.
|
||||
@@ -6,6 +6,7 @@ CMake Warning \(author\) at CMP0121-SUBLIST-start-Common\.cmake:3 \(list\):
|
||||
Call Stack \(most recent call first\):
|
||||
CMP0121-SUBLIST-start-WARN\.cmake:2 \(include\)
|
||||
CMakeLists\.txt:3 \(include\)
|
||||
This warning is for project developers\. Use -Wno-author to suppress it\.
|
||||
This warning is for project developers\. Use -Wno-author or -Wno-policy to
|
||||
suppress it\.
|
||||
|
||||
SUBLIST-start: -->a;b<--
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
CMake Warning \(author\) at CMP0126-WARN\.cmake:[0-9]+ \(set\):
|
||||
CMake Warning \(policy\) at CMP0126-WARN\.cmake:[0-9]+ \(set\):
|
||||
Policy CMP0126 is not set: set\(CACHE\) does not remove a normal variable of
|
||||
the same name\. Run "cmake --help-policy CMP0126" for policy details\. Use
|
||||
the cmake_policy command to set the policy and suppress this warning\.
|
||||
@@ -7,4 +7,5 @@ CMake Warning \(author\) at CMP0126-WARN\.cmake:[0-9]+ \(set\):
|
||||
will be removed from the current scope\.
|
||||
Call Stack \(most recent call first\):
|
||||
CMakeLists\.txt:[0-9]+ \(include\)
|
||||
This warning is for project developers\. Use -Wno-author to suppress it\.
|
||||
This warning is for project developers\. Use -Wno-author or -Wno-policy to
|
||||
suppress it\.
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
CMake Warning \(author\) at CMP0139-WARN\.cmake:[0-9]+ \(if\):
|
||||
CMake Warning \(policy\) at CMP0139-WARN\.cmake:[0-9]+ \(if\):
|
||||
Policy CMP0139 is not set: The if\(\) command supports path comparisons using
|
||||
PATH_EQUAL operator\. Run "cmake --help-policy CMP0139" for policy details\.
|
||||
Use the cmake_policy command to set the policy and suppress this warning\.
|
||||
@@ -7,7 +7,8 @@ CMake Warning \(author\) at CMP0139-WARN\.cmake:[0-9]+ \(if\):
|
||||
NEW\. Since the policy is not set the OLD behavior will be used\.
|
||||
Call Stack \(most recent call first\):
|
||||
CMakeLists\.txt:[0-9]+ \(include\)
|
||||
This warning is for project developers\. Use -Wno-author to suppress it\.
|
||||
This warning is for project developers\. Use -Wno-author or -Wno-policy to
|
||||
suppress it\.
|
||||
|
||||
CMake Error at CMP0139-WARN\.cmake:[0-9]+ \(if\):
|
||||
if given arguments:
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
^CMake Warning \(author\) at CMP0152-Common\.cmake:[0-9]+ \(file\):
|
||||
^CMake Warning \(policy\) at CMP0152-Common\.cmake:[0-9]+ \(file\):
|
||||
Policy CMP0152 is not set: file\(REAL_PATH\) resolves symlinks before
|
||||
collapsing \.\./ components\. Run "cmake --help-policy CMP0152" for policy
|
||||
details\. Use the cmake_policy command to set the policy and suppress this
|
||||
@@ -24,4 +24,5 @@
|
||||
Call Stack \(most recent call first\):
|
||||
CMP0152-WARN\.cmake:[0-9]+ \(include\)
|
||||
CMakeLists\.txt:[0-9]+ \(include\)
|
||||
This warning is for project developers\. Use -Wno-author to suppress it\.$
|
||||
This warning is for project developers\. Use -Wno-author or -Wno-policy to
|
||||
suppress it\.$
|
||||
|
||||
@@ -1,8 +1,9 @@
|
||||
^CMake Warning \(author\) at [^
|
||||
^CMake Warning \(policy\) at [^
|
||||
]*/Tests/RunCMake/CMP0153/CMP0153-WARN\.cmake:[0-9]+ \(exec_program\):
|
||||
Policy CMP0153 is not set: The exec_program command should not be called\.
|
||||
Run "cmake --help-policy CMP0153" for policy details\. Use the cmake_policy
|
||||
command to set the policy and suppress this warning\.
|
||||
|
||||
Use execute_process\(\) instead\.
|
||||
This warning is for project developers\. Use -Wno-author to suppress it\.$
|
||||
This warning is for project developers\. Use -Wno-author or -Wno-policy to
|
||||
suppress it\.$
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
CMake Warning \(author\) at CMP0156-Common\.cmake:[0-9]+ \(add_library\):
|
||||
CMake Warning \(policy\) at CMP0156-Common\.cmake:[0-9]+ \(add_library\):
|
||||
Policy CMP0156 is not set: De-duplicate libraries on link lines based on
|
||||
linker capabilities\. Run "cmake --help-policy CMP0156" for policy details\.
|
||||
Use the cmake_policy command to set the policy and suppress this warning\.
|
||||
@@ -8,9 +8,10 @@ CMake Warning \(author\) at CMP0156-Common\.cmake:[0-9]+ \(add_library\):
|
||||
Call Stack \(most recent call first\):
|
||||
CMP0156-WARN\.cmake:[0-9]+ \(include\)
|
||||
CMakeLists\.txt:[0-9]+ \(include\)
|
||||
This warning is for project developers\. Use -Wno-author to suppress it\.
|
||||
This warning is for project developers\. Use -Wno-author or -Wno-policy to
|
||||
suppress it\.
|
||||
|
||||
CMake Warning \(author\) at CMP0156-Common\.cmake:[0-9]+ \(add_library\):
|
||||
CMake Warning \(policy\) at CMP0156-Common\.cmake:[0-9]+ \(add_library\):
|
||||
Policy CMP0156 is not set: De-duplicate libraries on link lines based on
|
||||
linker capabilities\. Run "cmake --help-policy CMP0156" for policy details\.
|
||||
Use the cmake_policy command to set the policy and suppress this warning\.
|
||||
@@ -20,9 +21,10 @@ CMake Warning \(author\) at CMP0156-Common\.cmake:[0-9]+ \(add_library\):
|
||||
Call Stack \(most recent call first\):
|
||||
CMP0156-WARN\.cmake:[0-9]+ \(include\)
|
||||
CMakeLists\.txt:[0-9]+ \(include\)
|
||||
This warning is for project developers\. Use -Wno-author to suppress it\.
|
||||
This warning is for project developers\. Use -Wno-author or -Wno-policy to
|
||||
suppress it\.
|
||||
|
||||
CMake Warning \(author\) at CMP0156-Common\.cmake:[0-9]+ \(add_executable\):
|
||||
CMake Warning \(policy\) at CMP0156-Common\.cmake:[0-9]+ \(add_executable\):
|
||||
Policy CMP0156 is not set: De-duplicate libraries on link lines based on
|
||||
linker capabilities\. Run "cmake --help-policy CMP0156" for policy details\.
|
||||
Use the cmake_policy command to set the policy and suppress this warning\.
|
||||
@@ -32,4 +34,5 @@ CMake Warning \(author\) at CMP0156-Common\.cmake:[0-9]+ \(add_executable\):
|
||||
Call Stack \(most recent call first\):
|
||||
CMP0156-WARN\.cmake:[0-9]+ \(include\)
|
||||
CMakeLists\.txt:[0-9]+ \(include\)
|
||||
This warning is for project developers\. Use -Wno-author to suppress it\.
|
||||
This warning is for project developers\. Use -Wno-author or -Wno-policy to
|
||||
suppress it\.
|
||||
|
||||
@@ -38,7 +38,7 @@ Call Stack \(most recent call first\):
|
||||
CMakeLists\.txt:3 \(include\)
|
||||
|
||||
|
||||
CMake Warning \(author\) at READONLY_PROPERTIES\.cmake:44 \(set_target_properties\):
|
||||
CMake Warning \(policy\) at READONLY_PROPERTIES\.cmake:44 \(set_target_properties\):
|
||||
Policy CMP0160 is not set: More read-only target properties now error when
|
||||
trying to set them\. Run "cmake --help-policy CMP0160" for policy details\.
|
||||
Use the cmake_policy command to set the policy and suppress this warning\.
|
||||
@@ -48,9 +48,10 @@ CMake Warning \(author\) at READONLY_PROPERTIES\.cmake:44 \(set_target_propertie
|
||||
Call Stack \(most recent call first\):
|
||||
CMP0160-WARN\.cmake:3 \(include\)
|
||||
CMakeLists\.txt:3 \(include\)
|
||||
This warning is for project developers\. Use -Wno-author to suppress it\.
|
||||
This warning is for project developers\. Use -Wno-author or -Wno-policy to
|
||||
suppress it\.
|
||||
|
||||
CMake Warning \(author\) at READONLY_PROPERTIES\.cmake:44 \(set_target_properties\):
|
||||
CMake Warning \(policy\) at READONLY_PROPERTIES\.cmake:44 \(set_target_properties\):
|
||||
Policy CMP0160 is not set: More read-only target properties now error when
|
||||
trying to set them\. Run "cmake --help-policy CMP0160" for policy details\.
|
||||
Use the cmake_policy command to set the policy and suppress this warning\.
|
||||
@@ -60,9 +61,10 @@ CMake Warning \(author\) at READONLY_PROPERTIES\.cmake:44 \(set_target_propertie
|
||||
Call Stack \(most recent call first\):
|
||||
CMP0160-WARN\.cmake:3 \(include\)
|
||||
CMakeLists\.txt:3 \(include\)
|
||||
This warning is for project developers\. Use -Wno-author to suppress it\.
|
||||
This warning is for project developers\. Use -Wno-author or -Wno-policy to
|
||||
suppress it\.
|
||||
|
||||
CMake Warning \(author\) at READONLY_PROPERTIES\.cmake:44 \(set_target_properties\):
|
||||
CMake Warning \(policy\) at READONLY_PROPERTIES\.cmake:44 \(set_target_properties\):
|
||||
Policy CMP0160 is not set: More read-only target properties now error when
|
||||
trying to set them\. Run "cmake --help-policy CMP0160" for policy details\.
|
||||
Use the cmake_policy command to set the policy and suppress this warning\.
|
||||
@@ -72,9 +74,10 @@ CMake Warning \(author\) at READONLY_PROPERTIES\.cmake:44 \(set_target_propertie
|
||||
Call Stack \(most recent call first\):
|
||||
CMP0160-WARN\.cmake:3 \(include\)
|
||||
CMakeLists\.txt:3 \(include\)
|
||||
This warning is for project developers\. Use -Wno-author to suppress it\.
|
||||
This warning is for project developers\. Use -Wno-author or -Wno-policy to
|
||||
suppress it\.
|
||||
|
||||
CMake Warning \(author\) at READONLY_PROPERTIES\.cmake:44 \(set_target_properties\):
|
||||
CMake Warning \(policy\) at READONLY_PROPERTIES\.cmake:44 \(set_target_properties\):
|
||||
Policy CMP0160 is not set: More read-only target properties now error when
|
||||
trying to set them\. Run "cmake --help-policy CMP0160" for policy details\.
|
||||
Use the cmake_policy command to set the policy and suppress this warning\.
|
||||
@@ -84,9 +87,10 @@ CMake Warning \(author\) at READONLY_PROPERTIES\.cmake:44 \(set_target_propertie
|
||||
Call Stack \(most recent call first\):
|
||||
CMP0160-WARN\.cmake:3 \(include\)
|
||||
CMakeLists\.txt:3 \(include\)
|
||||
This warning is for project developers\. Use -Wno-author to suppress it\.
|
||||
This warning is for project developers\. Use -Wno-author or -Wno-policy to
|
||||
suppress it\.
|
||||
|
||||
CMake Warning \(author\) at READONLY_PROPERTIES\.cmake:44 \(set_target_properties\):
|
||||
CMake Warning \(policy\) at READONLY_PROPERTIES\.cmake:44 \(set_target_properties\):
|
||||
Policy CMP0160 is not set: More read-only target properties now error when
|
||||
trying to set them\. Run "cmake --help-policy CMP0160" for policy details\.
|
||||
Use the cmake_policy command to set the policy and suppress this warning\.
|
||||
@@ -96,9 +100,10 @@ CMake Warning \(author\) at READONLY_PROPERTIES\.cmake:44 \(set_target_propertie
|
||||
Call Stack \(most recent call first\):
|
||||
CMP0160-WARN\.cmake:3 \(include\)
|
||||
CMakeLists\.txt:3 \(include\)
|
||||
This warning is for project developers\. Use -Wno-author to suppress it\.
|
||||
This warning is for project developers\. Use -Wno-author or -Wno-policy to
|
||||
suppress it\.
|
||||
|
||||
CMake Warning \(author\) at READONLY_PROPERTIES\.cmake:44 \(set_target_properties\):
|
||||
CMake Warning \(policy\) at READONLY_PROPERTIES\.cmake:44 \(set_target_properties\):
|
||||
Policy CMP0160 is not set: More read-only target properties now error when
|
||||
trying to set them\. Run "cmake --help-policy CMP0160" for policy details\.
|
||||
Use the cmake_policy command to set the policy and suppress this warning\.
|
||||
@@ -108,9 +113,10 @@ CMake Warning \(author\) at READONLY_PROPERTIES\.cmake:44 \(set_target_propertie
|
||||
Call Stack \(most recent call first\):
|
||||
CMP0160-WARN\.cmake:3 \(include\)
|
||||
CMakeLists\.txt:3 \(include\)
|
||||
This warning is for project developers\. Use -Wno-author to suppress it\.
|
||||
This warning is for project developers\. Use -Wno-author or -Wno-policy to
|
||||
suppress it\.
|
||||
|
||||
CMake Warning \(author\) at READONLY_PROPERTIES\.cmake:44 \(set_target_properties\):
|
||||
CMake Warning \(policy\) at READONLY_PROPERTIES\.cmake:44 \(set_target_properties\):
|
||||
Policy CMP0160 is not set: More read-only target properties now error when
|
||||
trying to set them\. Run "cmake --help-policy CMP0160" for policy details\.
|
||||
Use the cmake_policy command to set the policy and suppress this warning\.
|
||||
@@ -120,9 +126,10 @@ CMake Warning \(author\) at READONLY_PROPERTIES\.cmake:44 \(set_target_propertie
|
||||
Call Stack \(most recent call first\):
|
||||
CMP0160-WARN\.cmake:3 \(include\)
|
||||
CMakeLists\.txt:3 \(include\)
|
||||
This warning is for project developers\. Use -Wno-author to suppress it\.
|
||||
This warning is for project developers\. Use -Wno-author or -Wno-policy to
|
||||
suppress it\.
|
||||
|
||||
CMake Warning \(author\) at READONLY_PROPERTIES\.cmake:44 \(set_target_properties\):
|
||||
CMake Warning \(policy\) at READONLY_PROPERTIES\.cmake:44 \(set_target_properties\):
|
||||
Policy CMP0160 is not set: More read-only target properties now error when
|
||||
trying to set them\. Run "cmake --help-policy CMP0160" for policy details\.
|
||||
Use the cmake_policy command to set the policy and suppress this warning\.
|
||||
@@ -132,7 +139,8 @@ CMake Warning \(author\) at READONLY_PROPERTIES\.cmake:44 \(set_target_propertie
|
||||
Call Stack \(most recent call first\):
|
||||
CMP0160-WARN\.cmake:3 \(include\)
|
||||
CMakeLists\.txt:3 \(include\)
|
||||
This warning is for project developers\. Use -Wno-author to suppress it\.
|
||||
This warning is for project developers\. Use -Wno-author or -Wno-policy to
|
||||
suppress it\.
|
||||
|
||||
CMake Error at READONLY_PROPERTIES\.cmake:44 \(set_target_properties\):
|
||||
IMPORTED_GLOBAL property can't be set on non-imported
|
||||
@@ -184,7 +192,7 @@ Call Stack \(most recent call first\):
|
||||
CMakeLists\.txt:3 \(include\)
|
||||
|
||||
|
||||
CMake Warning \(author\) at READONLY_PROPERTIES\.cmake:44 \(set_target_properties\):
|
||||
CMake Warning \(policy\) at READONLY_PROPERTIES\.cmake:44 \(set_target_properties\):
|
||||
Policy CMP0160 is not set: More read-only target properties now error when
|
||||
trying to set them\. Run "cmake --help-policy CMP0160" for policy details\.
|
||||
Use the cmake_policy command to set the policy and suppress this warning\.
|
||||
@@ -194,9 +202,10 @@ CMake Warning \(author\) at READONLY_PROPERTIES\.cmake:44 \(set_target_propertie
|
||||
Call Stack \(most recent call first\):
|
||||
CMP0160-WARN\.cmake:3 \(include\)
|
||||
CMakeLists\.txt:3 \(include\)
|
||||
This warning is for project developers\. Use -Wno-author to suppress it\.
|
||||
This warning is for project developers\. Use -Wno-author or -Wno-policy to
|
||||
suppress it\.
|
||||
|
||||
CMake Warning \(author\) at READONLY_PROPERTIES\.cmake:44 \(set_target_properties\):
|
||||
CMake Warning \(policy\) at READONLY_PROPERTIES\.cmake:44 \(set_target_properties\):
|
||||
Policy CMP0160 is not set: More read-only target properties now error when
|
||||
trying to set them\. Run "cmake --help-policy CMP0160" for policy details\.
|
||||
Use the cmake_policy command to set the policy and suppress this warning\.
|
||||
@@ -206,9 +215,10 @@ CMake Warning \(author\) at READONLY_PROPERTIES\.cmake:44 \(set_target_propertie
|
||||
Call Stack \(most recent call first\):
|
||||
CMP0160-WARN\.cmake:3 \(include\)
|
||||
CMakeLists\.txt:3 \(include\)
|
||||
This warning is for project developers\. Use -Wno-author to suppress it\.
|
||||
This warning is for project developers\. Use -Wno-author or -Wno-policy to
|
||||
suppress it\.
|
||||
|
||||
CMake Warning \(author\) at READONLY_PROPERTIES\.cmake:44 \(set_target_properties\):
|
||||
CMake Warning \(policy\) at READONLY_PROPERTIES\.cmake:44 \(set_target_properties\):
|
||||
Policy CMP0160 is not set: More read-only target properties now error when
|
||||
trying to set them\. Run "cmake --help-policy CMP0160" for policy details\.
|
||||
Use the cmake_policy command to set the policy and suppress this warning\.
|
||||
@@ -218,9 +228,10 @@ CMake Warning \(author\) at READONLY_PROPERTIES\.cmake:44 \(set_target_propertie
|
||||
Call Stack \(most recent call first\):
|
||||
CMP0160-WARN\.cmake:3 \(include\)
|
||||
CMakeLists\.txt:3 \(include\)
|
||||
This warning is for project developers\. Use -Wno-author to suppress it\.
|
||||
This warning is for project developers\. Use -Wno-author or -Wno-policy to
|
||||
suppress it\.
|
||||
|
||||
CMake Warning \(author\) at READONLY_PROPERTIES\.cmake:44 \(set_target_properties\):
|
||||
CMake Warning \(policy\) at READONLY_PROPERTIES\.cmake:44 \(set_target_properties\):
|
||||
Policy CMP0160 is not set: More read-only target properties now error when
|
||||
trying to set them\. Run "cmake --help-policy CMP0160" for policy details\.
|
||||
Use the cmake_policy command to set the policy and suppress this warning\.
|
||||
@@ -230,9 +241,10 @@ CMake Warning \(author\) at READONLY_PROPERTIES\.cmake:44 \(set_target_propertie
|
||||
Call Stack \(most recent call first\):
|
||||
CMP0160-WARN\.cmake:3 \(include\)
|
||||
CMakeLists\.txt:3 \(include\)
|
||||
This warning is for project developers\. Use -Wno-author to suppress it\.
|
||||
This warning is for project developers\. Use -Wno-author or -Wno-policy to
|
||||
suppress it\.
|
||||
|
||||
CMake Warning \(author\) at READONLY_PROPERTIES\.cmake:44 \(set_target_properties\):
|
||||
CMake Warning \(policy\) at READONLY_PROPERTIES\.cmake:44 \(set_target_properties\):
|
||||
Policy CMP0160 is not set: More read-only target properties now error when
|
||||
trying to set them\. Run "cmake --help-policy CMP0160" for policy details\.
|
||||
Use the cmake_policy command to set the policy and suppress this warning\.
|
||||
@@ -243,9 +255,10 @@ CMake Warning \(author\) at READONLY_PROPERTIES\.cmake:44 \(set_target_propertie
|
||||
Call Stack \(most recent call first\):
|
||||
CMP0160-WARN\.cmake:3 \(include\)
|
||||
CMakeLists\.txt:3 \(include\)
|
||||
This warning is for project developers\. Use -Wno-author to suppress it\.
|
||||
This warning is for project developers\. Use -Wno-author or -Wno-policy to
|
||||
suppress it\.
|
||||
|
||||
CMake Warning \(author\) at READONLY_PROPERTIES\.cmake:44 \(set_target_properties\):
|
||||
CMake Warning \(policy\) at READONLY_PROPERTIES\.cmake:44 \(set_target_properties\):
|
||||
Policy CMP0160 is not set: More read-only target properties now error when
|
||||
trying to set them\. Run "cmake --help-policy CMP0160" for policy details\.
|
||||
Use the cmake_policy command to set the policy and suppress this warning\.
|
||||
@@ -255,9 +268,10 @@ CMake Warning \(author\) at READONLY_PROPERTIES\.cmake:44 \(set_target_propertie
|
||||
Call Stack \(most recent call first\):
|
||||
CMP0160-WARN\.cmake:3 \(include\)
|
||||
CMakeLists\.txt:3 \(include\)
|
||||
This warning is for project developers\. Use -Wno-author to suppress it\.
|
||||
This warning is for project developers\. Use -Wno-author or -Wno-policy to
|
||||
suppress it\.
|
||||
|
||||
CMake Warning \(author\) at READONLY_PROPERTIES\.cmake:44 \(set_target_properties\):
|
||||
CMake Warning \(policy\) at READONLY_PROPERTIES\.cmake:44 \(set_target_properties\):
|
||||
Policy CMP0160 is not set: More read-only target properties now error when
|
||||
trying to set them\. Run "cmake --help-policy CMP0160" for policy details\.
|
||||
Use the cmake_policy command to set the policy and suppress this warning\.
|
||||
@@ -267,9 +281,10 @@ CMake Warning \(author\) at READONLY_PROPERTIES\.cmake:44 \(set_target_propertie
|
||||
Call Stack \(most recent call first\):
|
||||
CMP0160-WARN\.cmake:3 \(include\)
|
||||
CMakeLists\.txt:3 \(include\)
|
||||
This warning is for project developers\. Use -Wno-author to suppress it\.
|
||||
This warning is for project developers\. Use -Wno-author or -Wno-policy to
|
||||
suppress it\.
|
||||
|
||||
CMake Warning \(author\) at READONLY_PROPERTIES\.cmake:44 \(set_target_properties\):
|
||||
CMake Warning \(policy\) at READONLY_PROPERTIES\.cmake:44 \(set_target_properties\):
|
||||
Policy CMP0160 is not set: More read-only target properties now error when
|
||||
trying to set them\. Run "cmake --help-policy CMP0160" for policy details\.
|
||||
Use the cmake_policy command to set the policy and suppress this warning\.
|
||||
@@ -279,7 +294,8 @@ CMake Warning \(author\) at READONLY_PROPERTIES\.cmake:44 \(set_target_propertie
|
||||
Call Stack \(most recent call first\):
|
||||
CMP0160-WARN\.cmake:3 \(include\)
|
||||
CMakeLists\.txt:3 \(include\)
|
||||
This warning is for project developers\. Use -Wno-author to suppress it\.
|
||||
This warning is for project developers\. Use -Wno-author or -Wno-policy to
|
||||
suppress it\.
|
||||
|
||||
CMake Error at READONLY_PROPERTIES\.cmake:44 \(set_target_properties\):
|
||||
EXPORT_NAME property can't be set on imported targets\("ReadOnlyImport"\)
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
^((CMake Warning \(author\) at subdir-Common-Test11/CMakeLists\.txt:[0-9]+ \(set_property\):
|
||||
^((CMake Warning \(policy\) at subdir-Common-Test11/CMakeLists\.txt:[0-9]+ \(set_property\):
|
||||
Policy CMP0118 is not set: GENERATED sources may be used across directories
|
||||
without manual marking\. Run "cmake --help-policy CMP0118" for policy
|
||||
details\. Use the cmake_policy command to set the policy and suppress this
|
||||
@@ -6,9 +6,10 @@
|
||||
|
||||
Unsetting property 'GENERATED' will not be allowed under policy CMP0118!
|
||||
|
||||
This warning is for project developers\. Use -Wno-author to suppress it\.
|
||||
This warning is for project developers\. Use -Wno-author or -Wno-policy to
|
||||
suppress it\.
|
||||
+)+
|
||||
(CMake Warning \(author\) at CMP0163-Common-Test11\.cmake:[0-9]+ \(add_subdirectory\):
|
||||
(CMake Warning \(policy\) at CMP0163-Common-Test11\.cmake:[0-9]+ \(add_subdirectory\):
|
||||
Policy CMP0118 is not set: GENERATED sources may be used across directories
|
||||
without manual marking\. Run "cmake --help-policy CMP0118" for policy
|
||||
details\. Use the cmake_policy command to set the policy and suppress this
|
||||
@@ -19,7 +20,8 @@ This warning is for project developers\. Use -Wno-author to suppress it\.
|
||||
Call Stack \(most recent call first\):
|
||||
CMP0118-WARN/CMP0163-OLD-Test11\.cmake:[0-9]+ \(include\)
|
||||
CMakeLists\.txt:[0-9]+ \(include\)
|
||||
This warning is for project developers\. Use -Wno-author to suppress it\.
|
||||
This warning is for project developers\. Use -Wno-author or -Wno-policy to
|
||||
suppress it\.
|
||||
+)+)+
|
||||
Generated_source0\.txt: # 1a # GENERATED = `1`
|
||||
Generated_source0\.txt: # 1b # GENERATED = `1`
|
||||
|
||||
@@ -7,7 +7,7 @@ CMake Error at subdir-Common-Test13/CMakeLists\.txt:[0-9]+ \(add_custom_command\
|
||||
CMake Error at subdir-Common-Test13/CMakeLists\.txt:[0-9]+ \(add_custom_command\):
|
||||
TARGET 'custom[4-6]' was not created in this directory\.
|
||||
+
|
||||
(CMake Warning \(author\) at subdir-Common-Test13/CMakeLists\.txt:[0-9]+ \(set_property\):
|
||||
(CMake Warning \(policy\) at subdir-Common-Test13/CMakeLists\.txt:[0-9]+ \(set_property\):
|
||||
Policy CMP0118 is not set: GENERATED sources may be used across directories
|
||||
without manual marking\. Run "cmake --help-policy CMP0118" for policy
|
||||
details\. Use the cmake_policy command to set the policy and suppress this
|
||||
@@ -15,9 +15,10 @@ CMake Error at subdir-Common-Test13/CMakeLists\.txt:[0-9]+ \(add_custom_command\
|
||||
|
||||
Unsetting property 'GENERATED' will not be allowed under policy CMP0118!
|
||||
|
||||
This warning is for project developers\. Use -Wno-author to suppress it\.
|
||||
This warning is for project developers\. Use -Wno-author or -Wno-policy to
|
||||
suppress it\.
|
||||
+
|
||||
(CMake Warning \(author\) at CMP0163-Common-Test13\.cmake:[0-9]+ \(add_subdirectory\):
|
||||
(CMake Warning \(policy\) at CMP0163-Common-Test13\.cmake:[0-9]+ \(add_subdirectory\):
|
||||
Policy CMP0118 is not set: GENERATED sources may be used across directories
|
||||
without manual marking\. Run "cmake --help-policy CMP0118" for policy
|
||||
details\. Use the cmake_policy command to set the policy and suppress this
|
||||
@@ -28,7 +29,8 @@ This warning is for project developers\. Use -Wno-author to suppress it\.
|
||||
Call Stack \(most recent call first\):
|
||||
CMP0118-WARN/CMP0163-OLD-Test13\.cmake:[0-9]+ \(include\)
|
||||
CMakeLists\.txt:[0-9]+ \(include\)
|
||||
This warning is for project developers\. Use -Wno-author to suppress it\.
|
||||
This warning is for project developers\. Use -Wno-author or -Wno-policy to
|
||||
suppress it\.
|
||||
+)+)+
|
||||
Generated_source0\.txt: # 1a # GENERATED = `1`
|
||||
Generated_source0\.txt: # 1b # GENERATED = `1`
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
^((CMake Warning \(author\) at subdir-Common-Test15/CMakeLists\.txt:[0-9]+ \(set_property\):
|
||||
^((CMake Warning \(policy\) at subdir-Common-Test15/CMakeLists\.txt:[0-9]+ \(set_property\):
|
||||
Policy CMP0118 is not set: GENERATED sources may be used across directories
|
||||
without manual marking\. Run "cmake --help-policy CMP0118" for policy
|
||||
details\. Use the cmake_policy command to set the policy and suppress this
|
||||
@@ -6,9 +6,10 @@
|
||||
|
||||
Unsetting property 'GENERATED' will not be allowed under policy CMP0118!
|
||||
|
||||
This warning is for project developers\. Use -Wno-author to suppress it\.
|
||||
This warning is for project developers\. Use -Wno-author or -Wno-policy to
|
||||
suppress it\.
|
||||
+)+
|
||||
(CMake Warning \(author\) at CMP0163-Common-Test15\.cmake:[0-9]+ \(add_subdirectory\):
|
||||
(CMake Warning \(policy\) at CMP0163-Common-Test15\.cmake:[0-9]+ \(add_subdirectory\):
|
||||
Policy CMP0118 is not set: GENERATED sources may be used across directories
|
||||
without manual marking\. Run "cmake --help-policy CMP0118" for policy
|
||||
details\. Use the cmake_policy command to set the policy and suppress this
|
||||
@@ -19,7 +20,8 @@ This warning is for project developers\. Use -Wno-author to suppress it\.
|
||||
Call Stack \(most recent call first\):
|
||||
CMP0118-WARN/CMP0163-OLD-Test15\.cmake:[0-9]+ \(include\)
|
||||
CMakeLists\.txt:[0-9]+ \(include\)
|
||||
This warning is for project developers\. Use -Wno-author to suppress it\.
|
||||
This warning is for project developers\. Use -Wno-author or -Wno-policy to
|
||||
suppress it\.
|
||||
+)+)+
|
||||
Generated_source0\.txt: # 1a # GENERATED = `1`
|
||||
Generated_source0\.txt: # 1b # GENERATED = `1`
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
^CMake Warning \(author\) at CMP0163-Common-Test4\.cmake:[0-9]+ \(set_property\):
|
||||
^CMake Warning \(policy\) at CMP0163-Common-Test4\.cmake:[0-9]+ \(set_property\):
|
||||
Policy CMP0118 is not set: GENERATED sources may be used across directories
|
||||
without manual marking\. Run "cmake --help-policy CMP0118" for policy
|
||||
details\. Use the cmake_policy command to set the policy and suppress this
|
||||
@@ -9,7 +9,8 @@
|
||||
Call Stack \(most recent call first\):
|
||||
CMP0118-WARN/CMP0163-OLD-Test4\.cmake:[0-9]+ \(include\)
|
||||
CMakeLists\.txt:[0-9]+ \(include\)
|
||||
This warning is for project developers\. Use -Wno-author to suppress it\.
|
||||
This warning is for project developers\. Use -Wno-author or -Wno-policy to
|
||||
suppress it\.
|
||||
+
|
||||
Generated_with_full_path1\.txt: # 1a # GENERATED = `0`
|
||||
Generated_with_full_path1\.txt: # 1b # GENERATED = `0`
|
||||
@@ -17,7 +18,7 @@ Generated_with_full_path1\.txt: # 2a # GENERATED = `0`
|
||||
Generated_with_full_path1\.txt: # 2b # GENERATED = `0`
|
||||
Generated_with_full_path1\.txt: # 3a # GENERATED = `0`
|
||||
Generated_with_full_path1\.txt: # 3b # GENERATED = `0`
|
||||
CMake Warning \(author\) at CMP0163-Common-Test4\.cmake:[0-9]+ \(set_property\):
|
||||
CMake Warning \(policy\) at CMP0163-Common-Test4\.cmake:[0-9]+ \(set_property\):
|
||||
Policy CMP0118 is not set: GENERATED sources may be used across directories
|
||||
without manual marking\. Run "cmake --help-policy CMP0118" for policy
|
||||
details\. Use the cmake_policy command to set the policy and suppress this
|
||||
@@ -28,7 +29,8 @@ CMake Warning \(author\) at CMP0163-Common-Test4\.cmake:[0-9]+ \(set_property\):
|
||||
Call Stack \(most recent call first\):
|
||||
CMP0118-WARN/CMP0163-OLD-Test4\.cmake:[0-9]+ \(include\)
|
||||
CMakeLists\.txt:[0-9]+ \(include\)
|
||||
This warning is for project developers\. Use -Wno-author to suppress it\.
|
||||
This warning is for project developers\. Use -Wno-author or -Wno-policy to
|
||||
suppress it\.
|
||||
+
|
||||
Generated_with_full_path2\.txt: # 1a # GENERATED = `0`
|
||||
Generated_with_full_path2\.txt: # 1b # GENERATED = `0`
|
||||
@@ -36,7 +38,7 @@ Generated_with_full_path2\.txt: # 2a # GENERATED = `0`
|
||||
Generated_with_full_path2\.txt: # 2b # GENERATED = `0`
|
||||
Generated_with_full_path2\.txt: # 3a # GENERATED = `0`
|
||||
Generated_with_full_path2\.txt: # 3b # GENERATED = `0`
|
||||
CMake Warning \(author\) at CMP0163-Common-Test4\.cmake:[0-9]+ \(set_property\):
|
||||
CMake Warning \(policy\) at CMP0163-Common-Test4\.cmake:[0-9]+ \(set_property\):
|
||||
Policy CMP0118 is not set: GENERATED sources may be used across directories
|
||||
without manual marking\. Run "cmake --help-policy CMP0118" for policy
|
||||
details\. Use the cmake_policy command to set the policy and suppress this
|
||||
@@ -47,7 +49,8 @@ CMake Warning \(author\) at CMP0163-Common-Test4\.cmake:[0-9]+ \(set_property\):
|
||||
Call Stack \(most recent call first\):
|
||||
CMP0118-WARN/CMP0163-OLD-Test4\.cmake:[0-9]+ \(include\)
|
||||
CMakeLists\.txt:[0-9]+ \(include\)
|
||||
This warning is for project developers\. Use -Wno-author to suppress it\.
|
||||
This warning is for project developers\. Use -Wno-author or -Wno-policy to
|
||||
suppress it\.
|
||||
+
|
||||
Generated_with_full_path3\.txt: # 1a # GENERATED = `0`
|
||||
Generated_with_full_path3\.txt: # 1b # GENERATED = `0`
|
||||
@@ -55,7 +58,7 @@ Generated_with_full_path3\.txt: # 2a # GENERATED = `0`
|
||||
Generated_with_full_path3\.txt: # 2b # GENERATED = `0`
|
||||
Generated_with_full_path3\.txt: # 3a # GENERATED = `0`
|
||||
Generated_with_full_path3\.txt: # 3b # GENERATED = `0`
|
||||
CMake Warning \(author\) at CMP0163-Common-Test4\.cmake:[0-9]+ \(set_property\):
|
||||
CMake Warning \(policy\) at CMP0163-Common-Test4\.cmake:[0-9]+ \(set_property\):
|
||||
Policy CMP0118 is not set: GENERATED sources may be used across directories
|
||||
without manual marking\. Run "cmake --help-policy CMP0118" for policy
|
||||
details\. Use the cmake_policy command to set the policy and suppress this
|
||||
@@ -66,7 +69,8 @@ CMake Warning \(author\) at CMP0163-Common-Test4\.cmake:[0-9]+ \(set_property\):
|
||||
Call Stack \(most recent call first\):
|
||||
CMP0118-WARN/CMP0163-OLD-Test4\.cmake:[0-9]+ \(include\)
|
||||
CMakeLists\.txt:[0-9]+ \(include\)
|
||||
This warning is for project developers\. Use -Wno-author to suppress it\.
|
||||
This warning is for project developers\. Use -Wno-author or -Wno-policy to
|
||||
suppress it\.
|
||||
+
|
||||
Generated_with_relative_path1\.txt: # 1a # GENERATED = `0`
|
||||
Generated_with_relative_path1\.txt: # 1b # GENERATED = `0`
|
||||
@@ -74,7 +78,7 @@ Generated_with_relative_path1\.txt: # 2a # GENERATED = `0`
|
||||
Generated_with_relative_path1\.txt: # 2b # GENERATED = `0`
|
||||
Generated_with_relative_path1\.txt: # 3a # GENERATED = `0`
|
||||
Generated_with_relative_path1\.txt: # 3b # GENERATED = `0`
|
||||
CMake Warning \(author\) at CMP0163-Common-Test4\.cmake:[0-9]+ \(set_property\):
|
||||
CMake Warning \(policy\) at CMP0163-Common-Test4\.cmake:[0-9]+ \(set_property\):
|
||||
Policy CMP0118 is not set: GENERATED sources may be used across directories
|
||||
without manual marking\. Run "cmake --help-policy CMP0118" for policy
|
||||
details\. Use the cmake_policy command to set the policy and suppress this
|
||||
@@ -85,7 +89,8 @@ CMake Warning \(author\) at CMP0163-Common-Test4\.cmake:[0-9]+ \(set_property\):
|
||||
Call Stack \(most recent call first\):
|
||||
CMP0118-WARN/CMP0163-OLD-Test4\.cmake:[0-9]+ \(include\)
|
||||
CMakeLists\.txt:[0-9]+ \(include\)
|
||||
This warning is for project developers\. Use -Wno-author to suppress it\.
|
||||
This warning is for project developers\. Use -Wno-author or -Wno-policy to
|
||||
suppress it\.
|
||||
+
|
||||
Generated_with_relative_path2\.txt: # 1a # GENERATED = `0`
|
||||
Generated_with_relative_path2\.txt: # 1b # GENERATED = `0`
|
||||
@@ -93,7 +98,7 @@ Generated_with_relative_path2\.txt: # 2a # GENERATED = `0`
|
||||
Generated_with_relative_path2\.txt: # 2b # GENERATED = `0`
|
||||
Generated_with_relative_path2\.txt: # 3a # GENERATED = `0`
|
||||
Generated_with_relative_path2\.txt: # 3b # GENERATED = `0`
|
||||
CMake Warning \(author\) at CMP0163-Common-Test4\.cmake:[0-9]+ \(set_property\):
|
||||
CMake Warning \(policy\) at CMP0163-Common-Test4\.cmake:[0-9]+ \(set_property\):
|
||||
Policy CMP0118 is not set: GENERATED sources may be used across directories
|
||||
without manual marking\. Run "cmake --help-policy CMP0118" for policy
|
||||
details\. Use the cmake_policy command to set the policy and suppress this
|
||||
@@ -104,7 +109,8 @@ CMake Warning \(author\) at CMP0163-Common-Test4\.cmake:[0-9]+ \(set_property\):
|
||||
Call Stack \(most recent call first\):
|
||||
CMP0118-WARN/CMP0163-OLD-Test4\.cmake:[0-9]+ \(include\)
|
||||
CMakeLists\.txt:[0-9]+ \(include\)
|
||||
This warning is for project developers\. Use -Wno-author to suppress it\.
|
||||
This warning is for project developers\. Use -Wno-author or -Wno-policy to
|
||||
suppress it\.
|
||||
+
|
||||
Generated_with_relative_path3\.txt: # 1a # GENERATED = `0`
|
||||
Generated_with_relative_path3\.txt: # 1b # GENERATED = `0`
|
||||
@@ -112,7 +118,7 @@ Generated_with_relative_path3\.txt: # 2a # GENERATED = `0`
|
||||
Generated_with_relative_path3\.txt: # 2b # GENERATED = `0`
|
||||
Generated_with_relative_path3\.txt: # 3a # GENERATED = `0`
|
||||
Generated_with_relative_path3\.txt: # 3b # GENERATED = `0`
|
||||
CMake Warning \(author\) at CMP0163-Common-Test4\.cmake:[0-9]+ \(set_property\):
|
||||
CMake Warning \(policy\) at CMP0163-Common-Test4\.cmake:[0-9]+ \(set_property\):
|
||||
Policy CMP0118 is not set: GENERATED sources may be used across directories
|
||||
without manual marking\. Run "cmake --help-policy CMP0118" for policy
|
||||
details\. Use the cmake_policy command to set the policy and suppress this
|
||||
@@ -123,7 +129,8 @@ CMake Warning \(author\) at CMP0163-Common-Test4\.cmake:[0-9]+ \(set_property\):
|
||||
Call Stack \(most recent call first\):
|
||||
CMP0118-WARN/CMP0163-OLD-Test4\.cmake:[0-9]+ \(include\)
|
||||
CMakeLists\.txt:[0-9]+ \(include\)
|
||||
This warning is for project developers\. Use -Wno-author to suppress it\.
|
||||
This warning is for project developers\. Use -Wno-author or -Wno-policy to
|
||||
suppress it\.
|
||||
+
|
||||
Generated_with_full_source_path1\.txt: # 1a # GENERATED = `0`
|
||||
Generated_with_full_source_path1\.txt: # 1b # GENERATED = `0`
|
||||
@@ -131,7 +138,7 @@ Generated_with_full_source_path1\.txt: # 2a # GENERATED = `0`
|
||||
Generated_with_full_source_path1\.txt: # 2b # GENERATED = `0`
|
||||
Generated_with_full_source_path1\.txt: # 3a # GENERATED = `0`
|
||||
Generated_with_full_source_path1\.txt: # 3b # GENERATED = `0`
|
||||
CMake Warning \(author\) at CMP0163-Common-Test4\.cmake:[0-9]+ \(set_property\):
|
||||
CMake Warning \(policy\) at CMP0163-Common-Test4\.cmake:[0-9]+ \(set_property\):
|
||||
Policy CMP0118 is not set: GENERATED sources may be used across directories
|
||||
without manual marking\. Run "cmake --help-policy CMP0118" for policy
|
||||
details\. Use the cmake_policy command to set the policy and suppress this
|
||||
@@ -142,7 +149,8 @@ CMake Warning \(author\) at CMP0163-Common-Test4\.cmake:[0-9]+ \(set_property\):
|
||||
Call Stack \(most recent call first\):
|
||||
CMP0118-WARN/CMP0163-OLD-Test4\.cmake:[0-9]+ \(include\)
|
||||
CMakeLists\.txt:[0-9]+ \(include\)
|
||||
This warning is for project developers\. Use -Wno-author to suppress it\.
|
||||
This warning is for project developers\. Use -Wno-author or -Wno-policy to
|
||||
suppress it\.
|
||||
+
|
||||
Generated_with_full_source_path2\.txt: # 1a # GENERATED = `0`
|
||||
Generated_with_full_source_path2\.txt: # 1b # GENERATED = `0`
|
||||
@@ -150,7 +158,7 @@ Generated_with_full_source_path2\.txt: # 2a # GENERATED = `0`
|
||||
Generated_with_full_source_path2\.txt: # 2b # GENERATED = `0`
|
||||
Generated_with_full_source_path2\.txt: # 3a # GENERATED = `0`
|
||||
Generated_with_full_source_path2\.txt: # 3b # GENERATED = `0`
|
||||
CMake Warning \(author\) at CMP0163-Common-Test4\.cmake:[0-9]+ \(set_property\):
|
||||
CMake Warning \(policy\) at CMP0163-Common-Test4\.cmake:[0-9]+ \(set_property\):
|
||||
Policy CMP0118 is not set: GENERATED sources may be used across directories
|
||||
without manual marking\. Run "cmake --help-policy CMP0118" for policy
|
||||
details\. Use the cmake_policy command to set the policy and suppress this
|
||||
@@ -161,7 +169,8 @@ CMake Warning \(author\) at CMP0163-Common-Test4\.cmake:[0-9]+ \(set_property\):
|
||||
Call Stack \(most recent call first\):
|
||||
CMP0118-WARN/CMP0163-OLD-Test4\.cmake:[0-9]+ \(include\)
|
||||
CMakeLists\.txt:[0-9]+ \(include\)
|
||||
This warning is for project developers\. Use -Wno-author to suppress it\.
|
||||
This warning is for project developers\. Use -Wno-author or -Wno-policy to
|
||||
suppress it\.
|
||||
+
|
||||
Generated_with_full_source_path3\.txt: # 1a # GENERATED = `0`
|
||||
Generated_with_full_source_path3\.txt: # 1b # GENERATED = `0`
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
^CMake Warning \(author\) at CMP0163-Common-Test4b\.cmake:[0-9]+ \(set_property\):
|
||||
^CMake Warning \(policy\) at CMP0163-Common-Test4b\.cmake:[0-9]+ \(set_property\):
|
||||
Policy CMP0118 is not set: GENERATED sources may be used across directories
|
||||
without manual marking\. Run "cmake --help-policy CMP0118" for policy
|
||||
details\. Use the cmake_policy command to set the policy and suppress this
|
||||
@@ -9,7 +9,8 @@
|
||||
Call Stack \(most recent call first\):
|
||||
CMP0118-WARN/CMP0163-OLD-Test4b\.cmake:[0-9]+ \(include\)
|
||||
CMakeLists\.txt:[0-9]+ \(include\)
|
||||
This warning is for project developers\. Use -Wno-author to suppress it\.
|
||||
This warning is for project developers\. Use -Wno-author or -Wno-policy to
|
||||
suppress it\.
|
||||
+
|
||||
Generated_with_full_path1\.txt: # 1a # GENERATED = `0`
|
||||
Generated_with_full_path1\.txt: # 1b # GENERATED = `0`
|
||||
@@ -17,7 +18,7 @@ Generated_with_full_path1\.txt: # 2a # GENERATED = `0`
|
||||
Generated_with_full_path1\.txt: # 2b # GENERATED = `0`
|
||||
Generated_with_full_path1\.txt: # 3a # GENERATED = `0`
|
||||
Generated_with_full_path1\.txt: # 3b # GENERATED = `0`
|
||||
CMake Warning \(author\) at CMP0163-Common-Test4b\.cmake:[0-9]+ \(set_property\):
|
||||
CMake Warning \(policy\) at CMP0163-Common-Test4b\.cmake:[0-9]+ \(set_property\):
|
||||
Policy CMP0118 is not set: GENERATED sources may be used across directories
|
||||
without manual marking\. Run "cmake --help-policy CMP0118" for policy
|
||||
details\. Use the cmake_policy command to set the policy and suppress this
|
||||
@@ -28,7 +29,8 @@ CMake Warning \(author\) at CMP0163-Common-Test4b\.cmake:[0-9]+ \(set_property\)
|
||||
Call Stack \(most recent call first\):
|
||||
CMP0118-WARN/CMP0163-OLD-Test4b\.cmake:[0-9]+ \(include\)
|
||||
CMakeLists\.txt:[0-9]+ \(include\)
|
||||
This warning is for project developers\. Use -Wno-author to suppress it\.
|
||||
This warning is for project developers\. Use -Wno-author or -Wno-policy to
|
||||
suppress it\.
|
||||
+
|
||||
Generated_with_full_path2\.txt: # 1a # GENERATED = `0`
|
||||
Generated_with_full_path2\.txt: # 1b # GENERATED = `0`
|
||||
@@ -36,7 +38,7 @@ Generated_with_full_path2\.txt: # 2a # GENERATED = `0`
|
||||
Generated_with_full_path2\.txt: # 2b # GENERATED = `0`
|
||||
Generated_with_full_path2\.txt: # 3a # GENERATED = `0`
|
||||
Generated_with_full_path2\.txt: # 3b # GENERATED = `0`
|
||||
CMake Warning \(author\) at CMP0163-Common-Test4b\.cmake:[0-9]+ \(set_property\):
|
||||
CMake Warning \(policy\) at CMP0163-Common-Test4b\.cmake:[0-9]+ \(set_property\):
|
||||
Policy CMP0118 is not set: GENERATED sources may be used across directories
|
||||
without manual marking\. Run "cmake --help-policy CMP0118" for policy
|
||||
details\. Use the cmake_policy command to set the policy and suppress this
|
||||
@@ -47,7 +49,8 @@ CMake Warning \(author\) at CMP0163-Common-Test4b\.cmake:[0-9]+ \(set_property\)
|
||||
Call Stack \(most recent call first\):
|
||||
CMP0118-WARN/CMP0163-OLD-Test4b\.cmake:[0-9]+ \(include\)
|
||||
CMakeLists\.txt:[0-9]+ \(include\)
|
||||
This warning is for project developers\. Use -Wno-author to suppress it\.
|
||||
This warning is for project developers\. Use -Wno-author or -Wno-policy to
|
||||
suppress it\.
|
||||
+
|
||||
Generated_with_full_path3\.txt: # 1a # GENERATED = `0`
|
||||
Generated_with_full_path3\.txt: # 1b # GENERATED = `0`
|
||||
@@ -55,7 +58,7 @@ Generated_with_full_path3\.txt: # 2a # GENERATED = `0`
|
||||
Generated_with_full_path3\.txt: # 2b # GENERATED = `0`
|
||||
Generated_with_full_path3\.txt: # 3a # GENERATED = `0`
|
||||
Generated_with_full_path3\.txt: # 3b # GENERATED = `0`
|
||||
CMake Warning \(author\) at CMP0163-Common-Test4b\.cmake:[0-9]+ \(set_property\):
|
||||
CMake Warning \(policy\) at CMP0163-Common-Test4b\.cmake:[0-9]+ \(set_property\):
|
||||
Policy CMP0118 is not set: GENERATED sources may be used across directories
|
||||
without manual marking\. Run "cmake --help-policy CMP0118" for policy
|
||||
details\. Use the cmake_policy command to set the policy and suppress this
|
||||
@@ -66,7 +69,8 @@ CMake Warning \(author\) at CMP0163-Common-Test4b\.cmake:[0-9]+ \(set_property\)
|
||||
Call Stack \(most recent call first\):
|
||||
CMP0118-WARN/CMP0163-OLD-Test4b\.cmake:[0-9]+ \(include\)
|
||||
CMakeLists\.txt:[0-9]+ \(include\)
|
||||
This warning is for project developers\. Use -Wno-author to suppress it\.
|
||||
This warning is for project developers\. Use -Wno-author or -Wno-policy to
|
||||
suppress it\.
|
||||
+
|
||||
Generated_with_relative_path1\.txt: # 1a # GENERATED = `0`
|
||||
Generated_with_relative_path1\.txt: # 1b # GENERATED = `0`
|
||||
@@ -74,7 +78,7 @@ Generated_with_relative_path1\.txt: # 2a # GENERATED = `0`
|
||||
Generated_with_relative_path1\.txt: # 2b # GENERATED = `0`
|
||||
Generated_with_relative_path1\.txt: # 3a # GENERATED = `0`
|
||||
Generated_with_relative_path1\.txt: # 3b # GENERATED = `0`
|
||||
CMake Warning \(author\) at CMP0163-Common-Test4b\.cmake:[0-9]+ \(set_property\):
|
||||
CMake Warning \(policy\) at CMP0163-Common-Test4b\.cmake:[0-9]+ \(set_property\):
|
||||
Policy CMP0118 is not set: GENERATED sources may be used across directories
|
||||
without manual marking\. Run "cmake --help-policy CMP0118" for policy
|
||||
details\. Use the cmake_policy command to set the policy and suppress this
|
||||
@@ -85,7 +89,8 @@ CMake Warning \(author\) at CMP0163-Common-Test4b\.cmake:[0-9]+ \(set_property\)
|
||||
Call Stack \(most recent call first\):
|
||||
CMP0118-WARN/CMP0163-OLD-Test4b\.cmake:[0-9]+ \(include\)
|
||||
CMakeLists\.txt:[0-9]+ \(include\)
|
||||
This warning is for project developers\. Use -Wno-author to suppress it\.
|
||||
This warning is for project developers\. Use -Wno-author or -Wno-policy to
|
||||
suppress it\.
|
||||
+
|
||||
Generated_with_relative_path2\.txt: # 1a # GENERATED = `0`
|
||||
Generated_with_relative_path2\.txt: # 1b # GENERATED = `0`
|
||||
@@ -93,7 +98,7 @@ Generated_with_relative_path2\.txt: # 2a # GENERATED = `0`
|
||||
Generated_with_relative_path2\.txt: # 2b # GENERATED = `0`
|
||||
Generated_with_relative_path2\.txt: # 3a # GENERATED = `0`
|
||||
Generated_with_relative_path2\.txt: # 3b # GENERATED = `0`
|
||||
CMake Warning \(author\) at CMP0163-Common-Test4b\.cmake:[0-9]+ \(set_property\):
|
||||
CMake Warning \(policy\) at CMP0163-Common-Test4b\.cmake:[0-9]+ \(set_property\):
|
||||
Policy CMP0118 is not set: GENERATED sources may be used across directories
|
||||
without manual marking\. Run "cmake --help-policy CMP0118" for policy
|
||||
details\. Use the cmake_policy command to set the policy and suppress this
|
||||
@@ -104,7 +109,8 @@ CMake Warning \(author\) at CMP0163-Common-Test4b\.cmake:[0-9]+ \(set_property\)
|
||||
Call Stack \(most recent call first\):
|
||||
CMP0118-WARN/CMP0163-OLD-Test4b\.cmake:[0-9]+ \(include\)
|
||||
CMakeLists\.txt:[0-9]+ \(include\)
|
||||
This warning is for project developers\. Use -Wno-author to suppress it\.
|
||||
This warning is for project developers\. Use -Wno-author or -Wno-policy to
|
||||
suppress it\.
|
||||
+
|
||||
Generated_with_relative_path3\.txt: # 1a # GENERATED = `0`
|
||||
Generated_with_relative_path3\.txt: # 1b # GENERATED = `0`
|
||||
@@ -112,7 +118,7 @@ Generated_with_relative_path3\.txt: # 2a # GENERATED = `0`
|
||||
Generated_with_relative_path3\.txt: # 2b # GENERATED = `0`
|
||||
Generated_with_relative_path3\.txt: # 3a # GENERATED = `0`
|
||||
Generated_with_relative_path3\.txt: # 3b # GENERATED = `0`
|
||||
CMake Warning \(author\) at CMP0163-Common-Test4b\.cmake:[0-9]+ \(set_property\):
|
||||
CMake Warning \(policy\) at CMP0163-Common-Test4b\.cmake:[0-9]+ \(set_property\):
|
||||
Policy CMP0118 is not set: GENERATED sources may be used across directories
|
||||
without manual marking\. Run "cmake --help-policy CMP0118" for policy
|
||||
details\. Use the cmake_policy command to set the policy and suppress this
|
||||
@@ -123,7 +129,8 @@ CMake Warning \(author\) at CMP0163-Common-Test4b\.cmake:[0-9]+ \(set_property\)
|
||||
Call Stack \(most recent call first\):
|
||||
CMP0118-WARN/CMP0163-OLD-Test4b\.cmake:[0-9]+ \(include\)
|
||||
CMakeLists\.txt:[0-9]+ \(include\)
|
||||
This warning is for project developers\. Use -Wno-author to suppress it\.
|
||||
This warning is for project developers\. Use -Wno-author or -Wno-policy to
|
||||
suppress it\.
|
||||
+
|
||||
Generated_with_full_source_path1\.txt: # 1a # GENERATED = `0`
|
||||
Generated_with_full_source_path1\.txt: # 1b # GENERATED = `0`
|
||||
@@ -131,7 +138,7 @@ Generated_with_full_source_path1\.txt: # 2a # GENERATED = `0`
|
||||
Generated_with_full_source_path1\.txt: # 2b # GENERATED = `0`
|
||||
Generated_with_full_source_path1\.txt: # 3a # GENERATED = `0`
|
||||
Generated_with_full_source_path1\.txt: # 3b # GENERATED = `0`
|
||||
CMake Warning \(author\) at CMP0163-Common-Test4b\.cmake:[0-9]+ \(set_property\):
|
||||
CMake Warning \(policy\) at CMP0163-Common-Test4b\.cmake:[0-9]+ \(set_property\):
|
||||
Policy CMP0118 is not set: GENERATED sources may be used across directories
|
||||
without manual marking\. Run "cmake --help-policy CMP0118" for policy
|
||||
details\. Use the cmake_policy command to set the policy and suppress this
|
||||
@@ -142,7 +149,8 @@ CMake Warning \(author\) at CMP0163-Common-Test4b\.cmake:[0-9]+ \(set_property\)
|
||||
Call Stack \(most recent call first\):
|
||||
CMP0118-WARN/CMP0163-OLD-Test4b\.cmake:[0-9]+ \(include\)
|
||||
CMakeLists\.txt:[0-9]+ \(include\)
|
||||
This warning is for project developers\. Use -Wno-author to suppress it\.
|
||||
This warning is for project developers\. Use -Wno-author or -Wno-policy to
|
||||
suppress it\.
|
||||
+
|
||||
Generated_with_full_source_path2\.txt: # 1a # GENERATED = `0`
|
||||
Generated_with_full_source_path2\.txt: # 1b # GENERATED = `0`
|
||||
@@ -150,7 +158,7 @@ Generated_with_full_source_path2\.txt: # 2a # GENERATED = `0`
|
||||
Generated_with_full_source_path2\.txt: # 2b # GENERATED = `0`
|
||||
Generated_with_full_source_path2\.txt: # 3a # GENERATED = `0`
|
||||
Generated_with_full_source_path2\.txt: # 3b # GENERATED = `0`
|
||||
CMake Warning \(author\) at CMP0163-Common-Test4b\.cmake:[0-9]+ \(set_property\):
|
||||
CMake Warning \(policy\) at CMP0163-Common-Test4b\.cmake:[0-9]+ \(set_property\):
|
||||
Policy CMP0118 is not set: GENERATED sources may be used across directories
|
||||
without manual marking\. Run "cmake --help-policy CMP0118" for policy
|
||||
details\. Use the cmake_policy command to set the policy and suppress this
|
||||
@@ -161,7 +169,8 @@ CMake Warning \(author\) at CMP0163-Common-Test4b\.cmake:[0-9]+ \(set_property\)
|
||||
Call Stack \(most recent call first\):
|
||||
CMP0118-WARN/CMP0163-OLD-Test4b\.cmake:[0-9]+ \(include\)
|
||||
CMakeLists\.txt:[0-9]+ \(include\)
|
||||
This warning is for project developers\. Use -Wno-author to suppress it\.
|
||||
This warning is for project developers\. Use -Wno-author or -Wno-policy to
|
||||
suppress it\.
|
||||
+
|
||||
Generated_with_full_source_path3\.txt: # 1a # GENERATED = `0`
|
||||
Generated_with_full_source_path3\.txt: # 1b # GENERATED = `0`
|
||||
|
||||
@@ -4,7 +4,7 @@ Generated_with_full_path1\.txt: # 2a # GENERATED = `1`
|
||||
Generated_with_full_path1\.txt: # 2b # GENERATED = `1`
|
||||
Generated_with_full_path1\.txt: # 3a # GENERATED = `0`
|
||||
Generated_with_full_path1\.txt: # 3b # GENERATED = `0`
|
||||
CMake Warning \(author\) at CMP0163-Common-Test5\.cmake:[0-9]+ \(set_property\):
|
||||
CMake Warning \(policy\) at CMP0163-Common-Test5\.cmake:[0-9]+ \(set_property\):
|
||||
Policy CMP0118 is not set: GENERATED sources may be used across directories
|
||||
without manual marking\. Run "cmake --help-policy CMP0118" for policy
|
||||
details\. Use the cmake_policy command to set the policy and suppress this
|
||||
@@ -15,7 +15,8 @@ CMake Warning \(author\) at CMP0163-Common-Test5\.cmake:[0-9]+ \(set_property\):
|
||||
Call Stack \(most recent call first\):
|
||||
CMP0118-WARN/CMP0163-OLD-Test5\.cmake:[0-9]+ \(include\)
|
||||
CMakeLists\.txt:[0-9]+ \(include\)
|
||||
This warning is for project developers\. Use -Wno-author to suppress it\.
|
||||
This warning is for project developers\. Use -Wno-author or -Wno-policy to
|
||||
suppress it\.
|
||||
+
|
||||
Generated_with_full_path2\.txt: # 1a # GENERATED = `0`
|
||||
Generated_with_full_path2\.txt: # 1b # GENERATED = `0`
|
||||
@@ -23,7 +24,7 @@ Generated_with_full_path2\.txt: # 2a # GENERATED = `0`
|
||||
Generated_with_full_path2\.txt: # 2b # GENERATED = `0`
|
||||
Generated_with_full_path2\.txt: # 3a # GENERATED = `0`
|
||||
Generated_with_full_path2\.txt: # 3b # GENERATED = `0`
|
||||
CMake Warning \(author\) at CMP0163-Common-Test5\.cmake:[0-9]+ \(set_property\):
|
||||
CMake Warning \(policy\) at CMP0163-Common-Test5\.cmake:[0-9]+ \(set_property\):
|
||||
Policy CMP0118 is not set: GENERATED sources may be used across directories
|
||||
without manual marking\. Run "cmake --help-policy CMP0118" for policy
|
||||
details\. Use the cmake_policy command to set the policy and suppress this
|
||||
@@ -42,7 +43,8 @@ CMake Warning \(author\) at CMP0163-Common-Test5\.cmake:[0-9]+ \(set_property\):
|
||||
Call Stack \(most recent call first\):
|
||||
CMP0118-WARN/CMP0163-OLD-Test5\.cmake:[0-9]+ \(include\)
|
||||
CMakeLists\.txt:[0-9]+ \(include\)
|
||||
This warning is for project developers\. Use -Wno-author to suppress it\.
|
||||
This warning is for project developers\. Use -Wno-author or -Wno-policy to
|
||||
suppress it\.
|
||||
+
|
||||
Generated_with_full_path3\.txt: # 1a # GENERATED = `0`
|
||||
Generated_with_full_path3\.txt: # 1b # GENERATED = `0`
|
||||
@@ -56,7 +58,7 @@ Generated_with_relative_path1\.txt: # 2a # GENERATED = `1`
|
||||
Generated_with_relative_path1\.txt: # 2b # GENERATED = `1`
|
||||
Generated_with_relative_path1\.txt: # 3a # GENERATED = `0`
|
||||
Generated_with_relative_path1\.txt: # 3b # GENERATED = `0`
|
||||
CMake Warning \(author\) at CMP0163-Common-Test5\.cmake:[0-9]+ \(set_property\):
|
||||
CMake Warning \(policy\) at CMP0163-Common-Test5\.cmake:[0-9]+ \(set_property\):
|
||||
Policy CMP0118 is not set: GENERATED sources may be used across directories
|
||||
without manual marking\. Run "cmake --help-policy CMP0118" for policy
|
||||
details\. Use the cmake_policy command to set the policy and suppress this
|
||||
@@ -67,7 +69,8 @@ CMake Warning \(author\) at CMP0163-Common-Test5\.cmake:[0-9]+ \(set_property\):
|
||||
Call Stack \(most recent call first\):
|
||||
CMP0118-WARN/CMP0163-OLD-Test5\.cmake:[0-9]+ \(include\)
|
||||
CMakeLists\.txt:[0-9]+ \(include\)
|
||||
This warning is for project developers\. Use -Wno-author to suppress it\.
|
||||
This warning is for project developers\. Use -Wno-author or -Wno-policy to
|
||||
suppress it\.
|
||||
+
|
||||
Generated_with_relative_path2\.txt: # 1a # GENERATED = `0`
|
||||
Generated_with_relative_path2\.txt: # 1b # GENERATED = `0`
|
||||
@@ -75,7 +78,7 @@ Generated_with_relative_path2\.txt: # 2a # GENERATED = `0`
|
||||
Generated_with_relative_path2\.txt: # 2b # GENERATED = `0`
|
||||
Generated_with_relative_path2\.txt: # 3a # GENERATED = `0`
|
||||
Generated_with_relative_path2\.txt: # 3b # GENERATED = `0`
|
||||
CMake Warning \(author\) at CMP0163-Common-Test5\.cmake:[0-9]+ \(set_property\):
|
||||
CMake Warning \(policy\) at CMP0163-Common-Test5\.cmake:[0-9]+ \(set_property\):
|
||||
Policy CMP0118 is not set: GENERATED sources may be used across directories
|
||||
without manual marking\. Run "cmake --help-policy CMP0118" for policy
|
||||
details\. Use the cmake_policy command to set the policy and suppress this
|
||||
@@ -94,7 +97,8 @@ CMake Warning \(author\) at CMP0163-Common-Test5\.cmake:[0-9]+ \(set_property\):
|
||||
Call Stack \(most recent call first\):
|
||||
CMP0118-WARN/CMP0163-OLD-Test5\.cmake:[0-9]+ \(include\)
|
||||
CMakeLists\.txt:[0-9]+ \(include\)
|
||||
This warning is for project developers\. Use -Wno-author to suppress it\.
|
||||
This warning is for project developers\. Use -Wno-author or -Wno-policy to
|
||||
suppress it\.
|
||||
+
|
||||
Generated_with_relative_path3\.txt: # 1a # GENERATED = `0`
|
||||
Generated_with_relative_path3\.txt: # 1b # GENERATED = `0`
|
||||
@@ -108,7 +112,7 @@ Generated_with_full_source_path1\.txt: # 2a # GENERATED = `1`
|
||||
Generated_with_full_source_path1\.txt: # 2b # GENERATED = `1`
|
||||
Generated_with_full_source_path1\.txt: # 3a # GENERATED = `1`
|
||||
Generated_with_full_source_path1\.txt: # 3b # GENERATED = `1`
|
||||
CMake Warning \(author\) at CMP0163-Common-Test5\.cmake:[0-9]+ \(set_property\):
|
||||
CMake Warning \(policy\) at CMP0163-Common-Test5\.cmake:[0-9]+ \(set_property\):
|
||||
Policy CMP0118 is not set: GENERATED sources may be used across directories
|
||||
without manual marking\. Run "cmake --help-policy CMP0118" for policy
|
||||
details\. Use the cmake_policy command to set the policy and suppress this
|
||||
@@ -119,7 +123,8 @@ CMake Warning \(author\) at CMP0163-Common-Test5\.cmake:[0-9]+ \(set_property\):
|
||||
Call Stack \(most recent call first\):
|
||||
CMP0118-WARN/CMP0163-OLD-Test5\.cmake:[0-9]+ \(include\)
|
||||
CMakeLists\.txt:[0-9]+ \(include\)
|
||||
This warning is for project developers\. Use -Wno-author to suppress it\.
|
||||
This warning is for project developers\. Use -Wno-author or -Wno-policy to
|
||||
suppress it\.
|
||||
+
|
||||
Generated_with_full_source_path2\.txt: # 1a # GENERATED = `0`
|
||||
Generated_with_full_source_path2\.txt: # 1b # GENERATED = `0`
|
||||
@@ -127,7 +132,7 @@ Generated_with_full_source_path2\.txt: # 2a # GENERATED = `0`
|
||||
Generated_with_full_source_path2\.txt: # 2b # GENERATED = `0`
|
||||
Generated_with_full_source_path2\.txt: # 3a # GENERATED = `0`
|
||||
Generated_with_full_source_path2\.txt: # 3b # GENERATED = `0`
|
||||
CMake Warning \(author\) at CMP0163-Common-Test5\.cmake:[0-9]+ \(set_property\):
|
||||
CMake Warning \(policy\) at CMP0163-Common-Test5\.cmake:[0-9]+ \(set_property\):
|
||||
Policy CMP0118 is not set: GENERATED sources may be used across directories
|
||||
without manual marking\. Run "cmake --help-policy CMP0118" for policy
|
||||
details\. Use the cmake_policy command to set the policy and suppress this
|
||||
@@ -146,7 +151,8 @@ CMake Warning \(author\) at CMP0163-Common-Test5\.cmake:[0-9]+ \(set_property\):
|
||||
Call Stack \(most recent call first\):
|
||||
CMP0118-WARN/CMP0163-OLD-Test5\.cmake:[0-9]+ \(include\)
|
||||
CMakeLists\.txt:[0-9]+ \(include\)
|
||||
This warning is for project developers\. Use -Wno-author to suppress it\.
|
||||
This warning is for project developers\. Use -Wno-author or -Wno-policy to
|
||||
suppress it\.
|
||||
+
|
||||
Generated_with_full_source_path3\.txt: # 1a # GENERATED = `0`
|
||||
Generated_with_full_source_path3\.txt: # 1b # GENERATED = `0`
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
^((CMake Warning \(author\) at subdir-Common-Test7/CMakeLists\.txt:[0-9]+ \(set_property\):
|
||||
^((CMake Warning \(policy\) at subdir-Common-Test7/CMakeLists\.txt:[0-9]+ \(set_property\):
|
||||
Policy CMP0118 is not set: GENERATED sources may be used across directories
|
||||
without manual marking\. Run "cmake --help-policy CMP0118" for policy
|
||||
details\. Use the cmake_policy command to set the policy and suppress this
|
||||
@@ -6,9 +6,10 @@
|
||||
|
||||
Unsetting property 'GENERATED' will not be allowed under policy CMP0118!
|
||||
|
||||
This warning is for project developers\. Use -Wno-author to suppress it\.
|
||||
This warning is for project developers\. Use -Wno-author or -Wno-policy to
|
||||
suppress it\.
|
||||
+)+
|
||||
(CMake Warning \(author\) at CMP0163-Common-Test7\.cmake:[0-9]+ \(add_subdirectory\):
|
||||
(CMake Warning \(policy\) at CMP0163-Common-Test7\.cmake:[0-9]+ \(add_subdirectory\):
|
||||
Policy CMP0118 is not set: GENERATED sources may be used across directories
|
||||
without manual marking\. Run "cmake --help-policy CMP0118" for policy
|
||||
details\. Use the cmake_policy command to set the policy and suppress this
|
||||
@@ -19,7 +20,8 @@ This warning is for project developers\. Use -Wno-author to suppress it\.
|
||||
Call Stack \(most recent call first\):
|
||||
CMP0118-WARN/CMP0163-OLD-Test7\.cmake:[0-9]+ \(include\)
|
||||
CMakeLists\.txt:[0-9]+ \(include\)
|
||||
This warning is for project developers\. Use -Wno-author to suppress it\.
|
||||
This warning is for project developers\. Use -Wno-author or -Wno-policy to
|
||||
suppress it\.
|
||||
+)+)+
|
||||
Generated_source1\.txt: # 1a # GENERATED = `1`
|
||||
Generated_source1\.txt: # 1b # GENERATED = `1`
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
^((CMake Warning \(author\) at subdir-Common-Test9/CMakeLists\.txt:[0-9]+ \(set_property\):
|
||||
^((CMake Warning \(policy\) at subdir-Common-Test9/CMakeLists\.txt:[0-9]+ \(set_property\):
|
||||
Policy CMP0118 is not set: GENERATED sources may be used across directories
|
||||
without manual marking\. Run "cmake --help-policy CMP0118" for policy
|
||||
details\. Use the cmake_policy command to set the policy and suppress this
|
||||
@@ -6,9 +6,10 @@
|
||||
|
||||
Unsetting property 'GENERATED' will not be allowed under policy CMP0118!
|
||||
|
||||
This warning is for project developers\. Use -Wno-author to suppress it\.
|
||||
This warning is for project developers\. Use -Wno-author or -Wno-policy to
|
||||
suppress it\.
|
||||
+)+
|
||||
(CMake Warning \(author\) at CMP0163-Common-Test9\.cmake:[0-9]+ \(add_subdirectory\):
|
||||
(CMake Warning \(policy\) at CMP0163-Common-Test9\.cmake:[0-9]+ \(add_subdirectory\):
|
||||
Policy CMP0118 is not set: GENERATED sources may be used across directories
|
||||
without manual marking\. Run "cmake --help-policy CMP0118" for policy
|
||||
details\. Use the cmake_policy command to set the policy and suppress this
|
||||
@@ -19,7 +20,8 @@ This warning is for project developers\. Use -Wno-author to suppress it\.
|
||||
Call Stack \(most recent call first\):
|
||||
CMP0118-WARN/CMP0163-OLD-Test9\.cmake:[0-9]+ \(include\)
|
||||
CMakeLists\.txt:[0-9]+ \(include\)
|
||||
This warning is for project developers\. Use -Wno-author to suppress it\.
|
||||
This warning is for project developers\. Use -Wno-author or -Wno-policy to
|
||||
suppress it\.
|
||||
+)+)+
|
||||
Generated_source1\.txt: # 1a # GENERATED = `0`
|
||||
Generated_source1\.txt: # 1b # GENERATED = `0`
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
^((CMake Warning \(author\) at subdir-Common-Test11/CMakeLists\.txt:[0-9]+ \(set_property\):
|
||||
^((CMake Warning \(policy\) at subdir-Common-Test11/CMakeLists\.txt:[0-9]+ \(set_property\):
|
||||
Policy CMP0118 is not set: GENERATED sources may be used across directories
|
||||
without manual marking\. Run "cmake --help-policy CMP0118" for policy
|
||||
details\. Use the cmake_policy command to set the policy and suppress this
|
||||
@@ -6,9 +6,10 @@
|
||||
|
||||
Unsetting property 'GENERATED' will not be allowed under policy CMP0118!
|
||||
|
||||
This warning is for project developers\. Use -Wno-author to suppress it\.
|
||||
This warning is for project developers\. Use -Wno-author or -Wno-policy to
|
||||
suppress it\.
|
||||
+)+
|
||||
(CMake Warning \(author\) at CMP0163-Common-Test11\.cmake:[0-9]+ \(add_subdirectory\):
|
||||
(CMake Warning \(policy\) at CMP0163-Common-Test11\.cmake:[0-9]+ \(add_subdirectory\):
|
||||
Policy CMP0118 is not set: GENERATED sources may be used across directories
|
||||
without manual marking\. Run "cmake --help-policy CMP0118" for policy
|
||||
details\. Use the cmake_policy command to set the policy and suppress this
|
||||
@@ -19,7 +20,8 @@ This warning is for project developers\. Use -Wno-author to suppress it\.
|
||||
Call Stack \(most recent call first\):
|
||||
CMP0118-WARN/CMP0163-WARN-Test11\.cmake:[0-9]+ \(include\)
|
||||
CMakeLists\.txt:[0-9]+ \(include\)
|
||||
This warning is for project developers\. Use -Wno-author to suppress it\.
|
||||
This warning is for project developers\. Use -Wno-author or -Wno-policy to
|
||||
suppress it\.
|
||||
+)+)+
|
||||
Generated_source0\.txt: # 1a # GENERATED = `1`
|
||||
Generated_source0\.txt: # 1b # GENERATED = `1`
|
||||
|
||||
@@ -7,7 +7,7 @@ CMake Error at subdir-Common-Test13/CMakeLists\.txt:[0-9]+ \(add_custom_command\
|
||||
CMake Error at subdir-Common-Test13/CMakeLists\.txt:[0-9]+ \(add_custom_command\):
|
||||
TARGET 'custom[4-6]' was not created in this directory\.
|
||||
+
|
||||
(CMake Warning \(author\) at subdir-Common-Test13/CMakeLists\.txt:[0-9]+ \(set_property\):
|
||||
(CMake Warning \(policy\) at subdir-Common-Test13/CMakeLists\.txt:[0-9]+ \(set_property\):
|
||||
Policy CMP0118 is not set: GENERATED sources may be used across directories
|
||||
without manual marking\. Run "cmake --help-policy CMP0118" for policy
|
||||
details\. Use the cmake_policy command to set the policy and suppress this
|
||||
@@ -15,9 +15,10 @@ CMake Error at subdir-Common-Test13/CMakeLists\.txt:[0-9]+ \(add_custom_command\
|
||||
|
||||
Unsetting property 'GENERATED' will not be allowed under policy CMP0118!
|
||||
|
||||
This warning is for project developers\. Use -Wno-author to suppress it\.
|
||||
This warning is for project developers\. Use -Wno-author or -Wno-policy to
|
||||
suppress it\.
|
||||
+
|
||||
(CMake Warning \(author\) at CMP0163-Common-Test13\.cmake:[0-9]+ \(add_subdirectory\):
|
||||
(CMake Warning \(policy\) at CMP0163-Common-Test13\.cmake:[0-9]+ \(add_subdirectory\):
|
||||
Policy CMP0118 is not set: GENERATED sources may be used across directories
|
||||
without manual marking\. Run "cmake --help-policy CMP0118" for policy
|
||||
details\. Use the cmake_policy command to set the policy and suppress this
|
||||
@@ -28,7 +29,8 @@ This warning is for project developers\. Use -Wno-author to suppress it\.
|
||||
Call Stack \(most recent call first\):
|
||||
CMP0118-WARN/CMP0163-WARN-Test13\.cmake:[0-9]+ \(include\)
|
||||
CMakeLists\.txt:[0-9]+ \(include\)
|
||||
This warning is for project developers\. Use -Wno-author to suppress it\.
|
||||
This warning is for project developers\. Use -Wno-author or -Wno-policy to
|
||||
suppress it\.
|
||||
+)+)+
|
||||
Generated_source0\.txt: # 1a # GENERATED = `1`
|
||||
Generated_source0\.txt: # 1b # GENERATED = `1`
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
^((CMake Warning \(author\) at subdir-Common-Test15/CMakeLists\.txt:[0-9]+ \(set_property\):
|
||||
^((CMake Warning \(policy\) at subdir-Common-Test15/CMakeLists\.txt:[0-9]+ \(set_property\):
|
||||
Policy CMP0118 is not set: GENERATED sources may be used across directories
|
||||
without manual marking\. Run "cmake --help-policy CMP0118" for policy
|
||||
details\. Use the cmake_policy command to set the policy and suppress this
|
||||
@@ -6,9 +6,10 @@
|
||||
|
||||
Unsetting property 'GENERATED' will not be allowed under policy CMP0118!
|
||||
|
||||
This warning is for project developers\. Use -Wno-author to suppress it\.
|
||||
This warning is for project developers\. Use -Wno-author or -Wno-policy to
|
||||
suppress it\.
|
||||
+)+
|
||||
(CMake Warning \(author\) at CMP0163-Common-Test15\.cmake:[0-9]+ \(add_subdirectory\):
|
||||
(CMake Warning \(policy\) at CMP0163-Common-Test15\.cmake:[0-9]+ \(add_subdirectory\):
|
||||
Policy CMP0118 is not set: GENERATED sources may be used across directories
|
||||
without manual marking\. Run "cmake --help-policy CMP0118" for policy
|
||||
details\. Use the cmake_policy command to set the policy and suppress this
|
||||
@@ -19,7 +20,8 @@ This warning is for project developers\. Use -Wno-author to suppress it\.
|
||||
Call Stack \(most recent call first\):
|
||||
CMP0118-WARN/CMP0163-WARN-Test15\.cmake:[0-9]+ \(include\)
|
||||
CMakeLists\.txt:[0-9]+ \(include\)
|
||||
This warning is for project developers\. Use -Wno-author to suppress it\.
|
||||
This warning is for project developers\. Use -Wno-author or -Wno-policy to
|
||||
suppress it\.
|
||||
+)+)+
|
||||
Generated_source0\.txt: # 1a # GENERATED = `1`
|
||||
Generated_source0\.txt: # 1b # GENERATED = `1`
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
^CMake Warning \(author\) at CMP0163-Common-Test4\.cmake:[0-9]+ \(set_property\):
|
||||
^CMake Warning \(policy\) at CMP0163-Common-Test4\.cmake:[0-9]+ \(set_property\):
|
||||
Policy CMP0118 is not set: GENERATED sources may be used across directories
|
||||
without manual marking\. Run "cmake --help-policy CMP0118" for policy
|
||||
details\. Use the cmake_policy command to set the policy and suppress this
|
||||
@@ -9,7 +9,8 @@
|
||||
Call Stack \(most recent call first\):
|
||||
CMP0118-WARN/CMP0163-WARN-Test4\.cmake:[0-9]+ \(include\)
|
||||
CMakeLists\.txt:[0-9]+ \(include\)
|
||||
This warning is for project developers\. Use -Wno-author to suppress it\.
|
||||
This warning is for project developers\. Use -Wno-author or -Wno-policy to
|
||||
suppress it\.
|
||||
+
|
||||
Generated_with_full_path1\.txt: # 1a # GENERATED = `0`
|
||||
Generated_with_full_path1\.txt: # 1b # GENERATED = `0`
|
||||
@@ -17,7 +18,7 @@ Generated_with_full_path1\.txt: # 2a # GENERATED = `0`
|
||||
Generated_with_full_path1\.txt: # 2b # GENERATED = `0`
|
||||
Generated_with_full_path1\.txt: # 3a # GENERATED = `0`
|
||||
Generated_with_full_path1\.txt: # 3b # GENERATED = `0`
|
||||
CMake Warning \(author\) at CMP0163-Common-Test4\.cmake:[0-9]+ \(set_property\):
|
||||
CMake Warning \(policy\) at CMP0163-Common-Test4\.cmake:[0-9]+ \(set_property\):
|
||||
Policy CMP0118 is not set: GENERATED sources may be used across directories
|
||||
without manual marking\. Run "cmake --help-policy CMP0118" for policy
|
||||
details\. Use the cmake_policy command to set the policy and suppress this
|
||||
@@ -28,7 +29,8 @@ CMake Warning \(author\) at CMP0163-Common-Test4\.cmake:[0-9]+ \(set_property\):
|
||||
Call Stack \(most recent call first\):
|
||||
CMP0118-WARN/CMP0163-WARN-Test4\.cmake:[0-9]+ \(include\)
|
||||
CMakeLists\.txt:[0-9]+ \(include\)
|
||||
This warning is for project developers\. Use -Wno-author to suppress it\.
|
||||
This warning is for project developers\. Use -Wno-author or -Wno-policy to
|
||||
suppress it\.
|
||||
+
|
||||
Generated_with_full_path2\.txt: # 1a # GENERATED = `0`
|
||||
Generated_with_full_path2\.txt: # 1b # GENERATED = `0`
|
||||
@@ -36,7 +38,7 @@ Generated_with_full_path2\.txt: # 2a # GENERATED = `0`
|
||||
Generated_with_full_path2\.txt: # 2b # GENERATED = `0`
|
||||
Generated_with_full_path2\.txt: # 3a # GENERATED = `0`
|
||||
Generated_with_full_path2\.txt: # 3b # GENERATED = `0`
|
||||
CMake Warning \(author\) at CMP0163-Common-Test4\.cmake:[0-9]+ \(set_property\):
|
||||
CMake Warning \(policy\) at CMP0163-Common-Test4\.cmake:[0-9]+ \(set_property\):
|
||||
Policy CMP0118 is not set: GENERATED sources may be used across directories
|
||||
without manual marking\. Run "cmake --help-policy CMP0118" for policy
|
||||
details\. Use the cmake_policy command to set the policy and suppress this
|
||||
@@ -47,7 +49,8 @@ CMake Warning \(author\) at CMP0163-Common-Test4\.cmake:[0-9]+ \(set_property\):
|
||||
Call Stack \(most recent call first\):
|
||||
CMP0118-WARN/CMP0163-WARN-Test4\.cmake:[0-9]+ \(include\)
|
||||
CMakeLists\.txt:[0-9]+ \(include\)
|
||||
This warning is for project developers\. Use -Wno-author to suppress it\.
|
||||
This warning is for project developers\. Use -Wno-author or -Wno-policy to
|
||||
suppress it\.
|
||||
+
|
||||
Generated_with_full_path3\.txt: # 1a # GENERATED = `0`
|
||||
Generated_with_full_path3\.txt: # 1b # GENERATED = `0`
|
||||
@@ -55,7 +58,7 @@ Generated_with_full_path3\.txt: # 2a # GENERATED = `0`
|
||||
Generated_with_full_path3\.txt: # 2b # GENERATED = `0`
|
||||
Generated_with_full_path3\.txt: # 3a # GENERATED = `0`
|
||||
Generated_with_full_path3\.txt: # 3b # GENERATED = `0`
|
||||
CMake Warning \(author\) at CMP0163-Common-Test4\.cmake:[0-9]+ \(set_property\):
|
||||
CMake Warning \(policy\) at CMP0163-Common-Test4\.cmake:[0-9]+ \(set_property\):
|
||||
Policy CMP0118 is not set: GENERATED sources may be used across directories
|
||||
without manual marking\. Run "cmake --help-policy CMP0118" for policy
|
||||
details\. Use the cmake_policy command to set the policy and suppress this
|
||||
@@ -66,7 +69,8 @@ CMake Warning \(author\) at CMP0163-Common-Test4\.cmake:[0-9]+ \(set_property\):
|
||||
Call Stack \(most recent call first\):
|
||||
CMP0118-WARN/CMP0163-WARN-Test4\.cmake:[0-9]+ \(include\)
|
||||
CMakeLists\.txt:[0-9]+ \(include\)
|
||||
This warning is for project developers\. Use -Wno-author to suppress it\.
|
||||
This warning is for project developers\. Use -Wno-author or -Wno-policy to
|
||||
suppress it\.
|
||||
+
|
||||
Generated_with_relative_path1\.txt: # 1a # GENERATED = `0`
|
||||
Generated_with_relative_path1\.txt: # 1b # GENERATED = `0`
|
||||
@@ -74,7 +78,7 @@ Generated_with_relative_path1\.txt: # 2a # GENERATED = `0`
|
||||
Generated_with_relative_path1\.txt: # 2b # GENERATED = `0`
|
||||
Generated_with_relative_path1\.txt: # 3a # GENERATED = `0`
|
||||
Generated_with_relative_path1\.txt: # 3b # GENERATED = `0`
|
||||
CMake Warning \(author\) at CMP0163-Common-Test4\.cmake:[0-9]+ \(set_property\):
|
||||
CMake Warning \(policy\) at CMP0163-Common-Test4\.cmake:[0-9]+ \(set_property\):
|
||||
Policy CMP0118 is not set: GENERATED sources may be used across directories
|
||||
without manual marking\. Run "cmake --help-policy CMP0118" for policy
|
||||
details\. Use the cmake_policy command to set the policy and suppress this
|
||||
@@ -85,7 +89,8 @@ CMake Warning \(author\) at CMP0163-Common-Test4\.cmake:[0-9]+ \(set_property\):
|
||||
Call Stack \(most recent call first\):
|
||||
CMP0118-WARN/CMP0163-WARN-Test4\.cmake:[0-9]+ \(include\)
|
||||
CMakeLists\.txt:[0-9]+ \(include\)
|
||||
This warning is for project developers\. Use -Wno-author to suppress it\.
|
||||
This warning is for project developers\. Use -Wno-author or -Wno-policy to
|
||||
suppress it\.
|
||||
+
|
||||
Generated_with_relative_path2\.txt: # 1a # GENERATED = `0`
|
||||
Generated_with_relative_path2\.txt: # 1b # GENERATED = `0`
|
||||
@@ -93,7 +98,7 @@ Generated_with_relative_path2\.txt: # 2a # GENERATED = `0`
|
||||
Generated_with_relative_path2\.txt: # 2b # GENERATED = `0`
|
||||
Generated_with_relative_path2\.txt: # 3a # GENERATED = `0`
|
||||
Generated_with_relative_path2\.txt: # 3b # GENERATED = `0`
|
||||
CMake Warning \(author\) at CMP0163-Common-Test4\.cmake:[0-9]+ \(set_property\):
|
||||
CMake Warning \(policy\) at CMP0163-Common-Test4\.cmake:[0-9]+ \(set_property\):
|
||||
Policy CMP0118 is not set: GENERATED sources may be used across directories
|
||||
without manual marking\. Run "cmake --help-policy CMP0118" for policy
|
||||
details\. Use the cmake_policy command to set the policy and suppress this
|
||||
@@ -104,7 +109,8 @@ CMake Warning \(author\) at CMP0163-Common-Test4\.cmake:[0-9]+ \(set_property\):
|
||||
Call Stack \(most recent call first\):
|
||||
CMP0118-WARN/CMP0163-WARN-Test4\.cmake:[0-9]+ \(include\)
|
||||
CMakeLists\.txt:[0-9]+ \(include\)
|
||||
This warning is for project developers\. Use -Wno-author to suppress it\.
|
||||
This warning is for project developers\. Use -Wno-author or -Wno-policy to
|
||||
suppress it\.
|
||||
+
|
||||
Generated_with_relative_path3\.txt: # 1a # GENERATED = `0`
|
||||
Generated_with_relative_path3\.txt: # 1b # GENERATED = `0`
|
||||
@@ -112,7 +118,7 @@ Generated_with_relative_path3\.txt: # 2a # GENERATED = `0`
|
||||
Generated_with_relative_path3\.txt: # 2b # GENERATED = `0`
|
||||
Generated_with_relative_path3\.txt: # 3a # GENERATED = `0`
|
||||
Generated_with_relative_path3\.txt: # 3b # GENERATED = `0`
|
||||
CMake Warning \(author\) at CMP0163-Common-Test4\.cmake:[0-9]+ \(set_property\):
|
||||
CMake Warning \(policy\) at CMP0163-Common-Test4\.cmake:[0-9]+ \(set_property\):
|
||||
Policy CMP0118 is not set: GENERATED sources may be used across directories
|
||||
without manual marking\. Run "cmake --help-policy CMP0118" for policy
|
||||
details\. Use the cmake_policy command to set the policy and suppress this
|
||||
@@ -123,7 +129,8 @@ CMake Warning \(author\) at CMP0163-Common-Test4\.cmake:[0-9]+ \(set_property\):
|
||||
Call Stack \(most recent call first\):
|
||||
CMP0118-WARN/CMP0163-WARN-Test4\.cmake:[0-9]+ \(include\)
|
||||
CMakeLists\.txt:[0-9]+ \(include\)
|
||||
This warning is for project developers\. Use -Wno-author to suppress it\.
|
||||
This warning is for project developers\. Use -Wno-author or -Wno-policy to
|
||||
suppress it\.
|
||||
+
|
||||
Generated_with_full_source_path1\.txt: # 1a # GENERATED = `0`
|
||||
Generated_with_full_source_path1\.txt: # 1b # GENERATED = `0`
|
||||
@@ -131,7 +138,7 @@ Generated_with_full_source_path1\.txt: # 2a # GENERATED = `0`
|
||||
Generated_with_full_source_path1\.txt: # 2b # GENERATED = `0`
|
||||
Generated_with_full_source_path1\.txt: # 3a # GENERATED = `0`
|
||||
Generated_with_full_source_path1\.txt: # 3b # GENERATED = `0`
|
||||
CMake Warning \(author\) at CMP0163-Common-Test4\.cmake:[0-9]+ \(set_property\):
|
||||
CMake Warning \(policy\) at CMP0163-Common-Test4\.cmake:[0-9]+ \(set_property\):
|
||||
Policy CMP0118 is not set: GENERATED sources may be used across directories
|
||||
without manual marking\. Run "cmake --help-policy CMP0118" for policy
|
||||
details\. Use the cmake_policy command to set the policy and suppress this
|
||||
@@ -142,7 +149,8 @@ CMake Warning \(author\) at CMP0163-Common-Test4\.cmake:[0-9]+ \(set_property\):
|
||||
Call Stack \(most recent call first\):
|
||||
CMP0118-WARN/CMP0163-WARN-Test4\.cmake:[0-9]+ \(include\)
|
||||
CMakeLists\.txt:[0-9]+ \(include\)
|
||||
This warning is for project developers\. Use -Wno-author to suppress it\.
|
||||
This warning is for project developers\. Use -Wno-author or -Wno-policy to
|
||||
suppress it\.
|
||||
+
|
||||
Generated_with_full_source_path2\.txt: # 1a # GENERATED = `0`
|
||||
Generated_with_full_source_path2\.txt: # 1b # GENERATED = `0`
|
||||
@@ -150,7 +158,7 @@ Generated_with_full_source_path2\.txt: # 2a # GENERATED = `0`
|
||||
Generated_with_full_source_path2\.txt: # 2b # GENERATED = `0`
|
||||
Generated_with_full_source_path2\.txt: # 3a # GENERATED = `0`
|
||||
Generated_with_full_source_path2\.txt: # 3b # GENERATED = `0`
|
||||
CMake Warning \(author\) at CMP0163-Common-Test4\.cmake:[0-9]+ \(set_property\):
|
||||
CMake Warning \(policy\) at CMP0163-Common-Test4\.cmake:[0-9]+ \(set_property\):
|
||||
Policy CMP0118 is not set: GENERATED sources may be used across directories
|
||||
without manual marking\. Run "cmake --help-policy CMP0118" for policy
|
||||
details\. Use the cmake_policy command to set the policy and suppress this
|
||||
@@ -161,7 +169,8 @@ CMake Warning \(author\) at CMP0163-Common-Test4\.cmake:[0-9]+ \(set_property\):
|
||||
Call Stack \(most recent call first\):
|
||||
CMP0118-WARN/CMP0163-WARN-Test4\.cmake:[0-9]+ \(include\)
|
||||
CMakeLists\.txt:[0-9]+ \(include\)
|
||||
This warning is for project developers\. Use -Wno-author to suppress it\.
|
||||
This warning is for project developers\. Use -Wno-author or -Wno-policy to
|
||||
suppress it\.
|
||||
+
|
||||
Generated_with_full_source_path3\.txt: # 1a # GENERATED = `0`
|
||||
Generated_with_full_source_path3\.txt: # 1b # GENERATED = `0`
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
^CMake Warning \(author\) at CMP0163-Common-Test4b\.cmake:[0-9]+ \(set_property\):
|
||||
^CMake Warning \(policy\) at CMP0163-Common-Test4b\.cmake:[0-9]+ \(set_property\):
|
||||
Policy CMP0118 is not set: GENERATED sources may be used across directories
|
||||
without manual marking\. Run "cmake --help-policy CMP0118" for policy
|
||||
details\. Use the cmake_policy command to set the policy and suppress this
|
||||
@@ -9,7 +9,8 @@
|
||||
Call Stack \(most recent call first\):
|
||||
CMP0118-WARN/CMP0163-WARN-Test4b\.cmake:[0-9]+ \(include\)
|
||||
CMakeLists\.txt:[0-9]+ \(include\)
|
||||
This warning is for project developers\. Use -Wno-author to suppress it\.
|
||||
This warning is for project developers\. Use -Wno-author or -Wno-policy to
|
||||
suppress it\.
|
||||
+
|
||||
Generated_with_full_path1\.txt: # 1a # GENERATED = `0`
|
||||
Generated_with_full_path1\.txt: # 1b # GENERATED = `0`
|
||||
@@ -17,7 +18,7 @@ Generated_with_full_path1\.txt: # 2a # GENERATED = `0`
|
||||
Generated_with_full_path1\.txt: # 2b # GENERATED = `0`
|
||||
Generated_with_full_path1\.txt: # 3a # GENERATED = `0`
|
||||
Generated_with_full_path1\.txt: # 3b # GENERATED = `0`
|
||||
CMake Warning \(author\) at CMP0163-Common-Test4b\.cmake:[0-9]+ \(set_property\):
|
||||
CMake Warning \(policy\) at CMP0163-Common-Test4b\.cmake:[0-9]+ \(set_property\):
|
||||
Policy CMP0118 is not set: GENERATED sources may be used across directories
|
||||
without manual marking\. Run "cmake --help-policy CMP0118" for policy
|
||||
details\. Use the cmake_policy command to set the policy and suppress this
|
||||
@@ -28,7 +29,8 @@ CMake Warning \(author\) at CMP0163-Common-Test4b\.cmake:[0-9]+ \(set_property\)
|
||||
Call Stack \(most recent call first\):
|
||||
CMP0118-WARN/CMP0163-WARN-Test4b\.cmake:[0-9]+ \(include\)
|
||||
CMakeLists\.txt:[0-9]+ \(include\)
|
||||
This warning is for project developers\. Use -Wno-author to suppress it\.
|
||||
This warning is for project developers\. Use -Wno-author or -Wno-policy to
|
||||
suppress it\.
|
||||
+
|
||||
Generated_with_full_path2\.txt: # 1a # GENERATED = `0`
|
||||
Generated_with_full_path2\.txt: # 1b # GENERATED = `0`
|
||||
@@ -36,7 +38,7 @@ Generated_with_full_path2\.txt: # 2a # GENERATED = `0`
|
||||
Generated_with_full_path2\.txt: # 2b # GENERATED = `0`
|
||||
Generated_with_full_path2\.txt: # 3a # GENERATED = `0`
|
||||
Generated_with_full_path2\.txt: # 3b # GENERATED = `0`
|
||||
CMake Warning \(author\) at CMP0163-Common-Test4b\.cmake:[0-9]+ \(set_property\):
|
||||
CMake Warning \(policy\) at CMP0163-Common-Test4b\.cmake:[0-9]+ \(set_property\):
|
||||
Policy CMP0118 is not set: GENERATED sources may be used across directories
|
||||
without manual marking\. Run "cmake --help-policy CMP0118" for policy
|
||||
details\. Use the cmake_policy command to set the policy and suppress this
|
||||
@@ -47,7 +49,8 @@ CMake Warning \(author\) at CMP0163-Common-Test4b\.cmake:[0-9]+ \(set_property\)
|
||||
Call Stack \(most recent call first\):
|
||||
CMP0118-WARN/CMP0163-WARN-Test4b\.cmake:[0-9]+ \(include\)
|
||||
CMakeLists\.txt:[0-9]+ \(include\)
|
||||
This warning is for project developers\. Use -Wno-author to suppress it\.
|
||||
This warning is for project developers\. Use -Wno-author or -Wno-policy to
|
||||
suppress it\.
|
||||
+
|
||||
Generated_with_full_path3\.txt: # 1a # GENERATED = `0`
|
||||
Generated_with_full_path3\.txt: # 1b # GENERATED = `0`
|
||||
@@ -55,7 +58,7 @@ Generated_with_full_path3\.txt: # 2a # GENERATED = `0`
|
||||
Generated_with_full_path3\.txt: # 2b # GENERATED = `0`
|
||||
Generated_with_full_path3\.txt: # 3a # GENERATED = `0`
|
||||
Generated_with_full_path3\.txt: # 3b # GENERATED = `0`
|
||||
CMake Warning \(author\) at CMP0163-Common-Test4b\.cmake:[0-9]+ \(set_property\):
|
||||
CMake Warning \(policy\) at CMP0163-Common-Test4b\.cmake:[0-9]+ \(set_property\):
|
||||
Policy CMP0118 is not set: GENERATED sources may be used across directories
|
||||
without manual marking\. Run "cmake --help-policy CMP0118" for policy
|
||||
details\. Use the cmake_policy command to set the policy and suppress this
|
||||
@@ -66,7 +69,8 @@ CMake Warning \(author\) at CMP0163-Common-Test4b\.cmake:[0-9]+ \(set_property\)
|
||||
Call Stack \(most recent call first\):
|
||||
CMP0118-WARN/CMP0163-WARN-Test4b\.cmake:[0-9]+ \(include\)
|
||||
CMakeLists\.txt:[0-9]+ \(include\)
|
||||
This warning is for project developers\. Use -Wno-author to suppress it\.
|
||||
This warning is for project developers\. Use -Wno-author or -Wno-policy to
|
||||
suppress it\.
|
||||
+
|
||||
Generated_with_relative_path1\.txt: # 1a # GENERATED = `0`
|
||||
Generated_with_relative_path1\.txt: # 1b # GENERATED = `0`
|
||||
@@ -74,7 +78,7 @@ Generated_with_relative_path1\.txt: # 2a # GENERATED = `0`
|
||||
Generated_with_relative_path1\.txt: # 2b # GENERATED = `0`
|
||||
Generated_with_relative_path1\.txt: # 3a # GENERATED = `0`
|
||||
Generated_with_relative_path1\.txt: # 3b # GENERATED = `0`
|
||||
CMake Warning \(author\) at CMP0163-Common-Test4b\.cmake:[0-9]+ \(set_property\):
|
||||
CMake Warning \(policy\) at CMP0163-Common-Test4b\.cmake:[0-9]+ \(set_property\):
|
||||
Policy CMP0118 is not set: GENERATED sources may be used across directories
|
||||
without manual marking\. Run "cmake --help-policy CMP0118" for policy
|
||||
details\. Use the cmake_policy command to set the policy and suppress this
|
||||
@@ -85,7 +89,8 @@ CMake Warning \(author\) at CMP0163-Common-Test4b\.cmake:[0-9]+ \(set_property\)
|
||||
Call Stack \(most recent call first\):
|
||||
CMP0118-WARN/CMP0163-WARN-Test4b\.cmake:[0-9]+ \(include\)
|
||||
CMakeLists\.txt:[0-9]+ \(include\)
|
||||
This warning is for project developers\. Use -Wno-author to suppress it\.
|
||||
This warning is for project developers\. Use -Wno-author or -Wno-policy to
|
||||
suppress it\.
|
||||
+
|
||||
Generated_with_relative_path2\.txt: # 1a # GENERATED = `0`
|
||||
Generated_with_relative_path2\.txt: # 1b # GENERATED = `0`
|
||||
@@ -93,7 +98,7 @@ Generated_with_relative_path2\.txt: # 2a # GENERATED = `0`
|
||||
Generated_with_relative_path2\.txt: # 2b # GENERATED = `0`
|
||||
Generated_with_relative_path2\.txt: # 3a # GENERATED = `0`
|
||||
Generated_with_relative_path2\.txt: # 3b # GENERATED = `0`
|
||||
CMake Warning \(author\) at CMP0163-Common-Test4b\.cmake:[0-9]+ \(set_property\):
|
||||
CMake Warning \(policy\) at CMP0163-Common-Test4b\.cmake:[0-9]+ \(set_property\):
|
||||
Policy CMP0118 is not set: GENERATED sources may be used across directories
|
||||
without manual marking\. Run "cmake --help-policy CMP0118" for policy
|
||||
details\. Use the cmake_policy command to set the policy and suppress this
|
||||
@@ -104,7 +109,8 @@ CMake Warning \(author\) at CMP0163-Common-Test4b\.cmake:[0-9]+ \(set_property\)
|
||||
Call Stack \(most recent call first\):
|
||||
CMP0118-WARN/CMP0163-WARN-Test4b\.cmake:[0-9]+ \(include\)
|
||||
CMakeLists\.txt:[0-9]+ \(include\)
|
||||
This warning is for project developers\. Use -Wno-author to suppress it\.
|
||||
This warning is for project developers\. Use -Wno-author or -Wno-policy to
|
||||
suppress it\.
|
||||
+
|
||||
Generated_with_relative_path3\.txt: # 1a # GENERATED = `0`
|
||||
Generated_with_relative_path3\.txt: # 1b # GENERATED = `0`
|
||||
@@ -112,7 +118,7 @@ Generated_with_relative_path3\.txt: # 2a # GENERATED = `0`
|
||||
Generated_with_relative_path3\.txt: # 2b # GENERATED = `0`
|
||||
Generated_with_relative_path3\.txt: # 3a # GENERATED = `0`
|
||||
Generated_with_relative_path3\.txt: # 3b # GENERATED = `0`
|
||||
CMake Warning \(author\) at CMP0163-Common-Test4b\.cmake:[0-9]+ \(set_property\):
|
||||
CMake Warning \(policy\) at CMP0163-Common-Test4b\.cmake:[0-9]+ \(set_property\):
|
||||
Policy CMP0118 is not set: GENERATED sources may be used across directories
|
||||
without manual marking\. Run "cmake --help-policy CMP0118" for policy
|
||||
details\. Use the cmake_policy command to set the policy and suppress this
|
||||
@@ -123,7 +129,8 @@ CMake Warning \(author\) at CMP0163-Common-Test4b\.cmake:[0-9]+ \(set_property\)
|
||||
Call Stack \(most recent call first\):
|
||||
CMP0118-WARN/CMP0163-WARN-Test4b\.cmake:[0-9]+ \(include\)
|
||||
CMakeLists\.txt:[0-9]+ \(include\)
|
||||
This warning is for project developers\. Use -Wno-author to suppress it\.
|
||||
This warning is for project developers\. Use -Wno-author or -Wno-policy to
|
||||
suppress it\.
|
||||
+
|
||||
Generated_with_full_source_path1\.txt: # 1a # GENERATED = `0`
|
||||
Generated_with_full_source_path1\.txt: # 1b # GENERATED = `0`
|
||||
@@ -131,7 +138,7 @@ Generated_with_full_source_path1\.txt: # 2a # GENERATED = `0`
|
||||
Generated_with_full_source_path1\.txt: # 2b # GENERATED = `0`
|
||||
Generated_with_full_source_path1\.txt: # 3a # GENERATED = `0`
|
||||
Generated_with_full_source_path1\.txt: # 3b # GENERATED = `0`
|
||||
CMake Warning \(author\) at CMP0163-Common-Test4b\.cmake:[0-9]+ \(set_property\):
|
||||
CMake Warning \(policy\) at CMP0163-Common-Test4b\.cmake:[0-9]+ \(set_property\):
|
||||
Policy CMP0118 is not set: GENERATED sources may be used across directories
|
||||
without manual marking\. Run "cmake --help-policy CMP0118" for policy
|
||||
details\. Use the cmake_policy command to set the policy and suppress this
|
||||
@@ -142,7 +149,8 @@ CMake Warning \(author\) at CMP0163-Common-Test4b\.cmake:[0-9]+ \(set_property\)
|
||||
Call Stack \(most recent call first\):
|
||||
CMP0118-WARN/CMP0163-WARN-Test4b\.cmake:[0-9]+ \(include\)
|
||||
CMakeLists\.txt:[0-9]+ \(include\)
|
||||
This warning is for project developers\. Use -Wno-author to suppress it\.
|
||||
This warning is for project developers\. Use -Wno-author or -Wno-policy to
|
||||
suppress it\.
|
||||
+
|
||||
Generated_with_full_source_path2\.txt: # 1a # GENERATED = `0`
|
||||
Generated_with_full_source_path2\.txt: # 1b # GENERATED = `0`
|
||||
@@ -150,7 +158,7 @@ Generated_with_full_source_path2\.txt: # 2a # GENERATED = `0`
|
||||
Generated_with_full_source_path2\.txt: # 2b # GENERATED = `0`
|
||||
Generated_with_full_source_path2\.txt: # 3a # GENERATED = `0`
|
||||
Generated_with_full_source_path2\.txt: # 3b # GENERATED = `0`
|
||||
CMake Warning \(author\) at CMP0163-Common-Test4b\.cmake:[0-9]+ \(set_property\):
|
||||
CMake Warning \(policy\) at CMP0163-Common-Test4b\.cmake:[0-9]+ \(set_property\):
|
||||
Policy CMP0118 is not set: GENERATED sources may be used across directories
|
||||
without manual marking\. Run "cmake --help-policy CMP0118" for policy
|
||||
details\. Use the cmake_policy command to set the policy and suppress this
|
||||
@@ -161,7 +169,8 @@ CMake Warning \(author\) at CMP0163-Common-Test4b\.cmake:[0-9]+ \(set_property\)
|
||||
Call Stack \(most recent call first\):
|
||||
CMP0118-WARN/CMP0163-WARN-Test4b\.cmake:[0-9]+ \(include\)
|
||||
CMakeLists\.txt:[0-9]+ \(include\)
|
||||
This warning is for project developers\. Use -Wno-author to suppress it\.
|
||||
This warning is for project developers\. Use -Wno-author or -Wno-policy to
|
||||
suppress it\.
|
||||
+
|
||||
Generated_with_full_source_path3\.txt: # 1a # GENERATED = `0`
|
||||
Generated_with_full_source_path3\.txt: # 1b # GENERATED = `0`
|
||||
|
||||
@@ -4,7 +4,7 @@ Generated_with_full_path1\.txt: # 2a # GENERATED = `1`
|
||||
Generated_with_full_path1\.txt: # 2b # GENERATED = `1`
|
||||
Generated_with_full_path1\.txt: # 3a # GENERATED = `0`
|
||||
Generated_with_full_path1\.txt: # 3b # GENERATED = `0`
|
||||
CMake Warning \(author\) at CMP0163-Common-Test5\.cmake:[0-9]+ \(set_property\):
|
||||
CMake Warning \(policy\) at CMP0163-Common-Test5\.cmake:[0-9]+ \(set_property\):
|
||||
Policy CMP0118 is not set: GENERATED sources may be used across directories
|
||||
without manual marking\. Run "cmake --help-policy CMP0118" for policy
|
||||
details\. Use the cmake_policy command to set the policy and suppress this
|
||||
@@ -15,7 +15,8 @@ CMake Warning \(author\) at CMP0163-Common-Test5\.cmake:[0-9]+ \(set_property\):
|
||||
Call Stack \(most recent call first\):
|
||||
CMP0118-WARN/CMP0163-WARN-Test5\.cmake:[0-9]+ \(include\)
|
||||
CMakeLists\.txt:[0-9]+ \(include\)
|
||||
This warning is for project developers\. Use -Wno-author to suppress it\.
|
||||
This warning is for project developers\. Use -Wno-author or -Wno-policy to
|
||||
suppress it\.
|
||||
+
|
||||
Generated_with_full_path2\.txt: # 1a # GENERATED = `0`
|
||||
Generated_with_full_path2\.txt: # 1b # GENERATED = `0`
|
||||
@@ -23,7 +24,7 @@ Generated_with_full_path2\.txt: # 2a # GENERATED = `0`
|
||||
Generated_with_full_path2\.txt: # 2b # GENERATED = `0`
|
||||
Generated_with_full_path2\.txt: # 3a # GENERATED = `0`
|
||||
Generated_with_full_path2\.txt: # 3b # GENERATED = `0`
|
||||
CMake Warning \(author\) at CMP0163-Common-Test5\.cmake:[0-9]+ \(set_property\):
|
||||
CMake Warning \(policy\) at CMP0163-Common-Test5\.cmake:[0-9]+ \(set_property\):
|
||||
Policy CMP0118 is not set: GENERATED sources may be used across directories
|
||||
without manual marking\. Run "cmake --help-policy CMP0118" for policy
|
||||
details\. Use the cmake_policy command to set the policy and suppress this
|
||||
@@ -42,7 +43,8 @@ CMake Warning \(author\) at CMP0163-Common-Test5\.cmake:[0-9]+ \(set_property\):
|
||||
Call Stack \(most recent call first\):
|
||||
CMP0118-WARN/CMP0163-WARN-Test5\.cmake:[0-9]+ \(include\)
|
||||
CMakeLists\.txt:[0-9]+ \(include\)
|
||||
This warning is for project developers\. Use -Wno-author to suppress it\.
|
||||
This warning is for project developers\. Use -Wno-author or -Wno-policy to
|
||||
suppress it\.
|
||||
+
|
||||
Generated_with_full_path3\.txt: # 1a # GENERATED = `0`
|
||||
Generated_with_full_path3\.txt: # 1b # GENERATED = `0`
|
||||
@@ -56,7 +58,7 @@ Generated_with_relative_path1\.txt: # 2a # GENERATED = `1`
|
||||
Generated_with_relative_path1\.txt: # 2b # GENERATED = `1`
|
||||
Generated_with_relative_path1\.txt: # 3a # GENERATED = `0`
|
||||
Generated_with_relative_path1\.txt: # 3b # GENERATED = `0`
|
||||
CMake Warning \(author\) at CMP0163-Common-Test5\.cmake:[0-9]+ \(set_property\):
|
||||
CMake Warning \(policy\) at CMP0163-Common-Test5\.cmake:[0-9]+ \(set_property\):
|
||||
Policy CMP0118 is not set: GENERATED sources may be used across directories
|
||||
without manual marking\. Run "cmake --help-policy CMP0118" for policy
|
||||
details\. Use the cmake_policy command to set the policy and suppress this
|
||||
@@ -67,7 +69,8 @@ CMake Warning \(author\) at CMP0163-Common-Test5\.cmake:[0-9]+ \(set_property\):
|
||||
Call Stack \(most recent call first\):
|
||||
CMP0118-WARN/CMP0163-WARN-Test5\.cmake:[0-9]+ \(include\)
|
||||
CMakeLists\.txt:[0-9]+ \(include\)
|
||||
This warning is for project developers\. Use -Wno-author to suppress it\.
|
||||
This warning is for project developers\. Use -Wno-author or -Wno-policy to
|
||||
suppress it\.
|
||||
+
|
||||
Generated_with_relative_path2\.txt: # 1a # GENERATED = `0`
|
||||
Generated_with_relative_path2\.txt: # 1b # GENERATED = `0`
|
||||
@@ -75,7 +78,7 @@ Generated_with_relative_path2\.txt: # 2a # GENERATED = `0`
|
||||
Generated_with_relative_path2\.txt: # 2b # GENERATED = `0`
|
||||
Generated_with_relative_path2\.txt: # 3a # GENERATED = `0`
|
||||
Generated_with_relative_path2\.txt: # 3b # GENERATED = `0`
|
||||
CMake Warning \(author\) at CMP0163-Common-Test5\.cmake:[0-9]+ \(set_property\):
|
||||
CMake Warning \(policy\) at CMP0163-Common-Test5\.cmake:[0-9]+ \(set_property\):
|
||||
Policy CMP0118 is not set: GENERATED sources may be used across directories
|
||||
without manual marking\. Run "cmake --help-policy CMP0118" for policy
|
||||
details\. Use the cmake_policy command to set the policy and suppress this
|
||||
@@ -94,7 +97,8 @@ CMake Warning \(author\) at CMP0163-Common-Test5\.cmake:[0-9]+ \(set_property\):
|
||||
Call Stack \(most recent call first\):
|
||||
CMP0118-WARN/CMP0163-WARN-Test5\.cmake:[0-9]+ \(include\)
|
||||
CMakeLists\.txt:[0-9]+ \(include\)
|
||||
This warning is for project developers\. Use -Wno-author to suppress it\.
|
||||
This warning is for project developers\. Use -Wno-author or -Wno-policy to
|
||||
suppress it\.
|
||||
+
|
||||
Generated_with_relative_path3\.txt: # 1a # GENERATED = `0`
|
||||
Generated_with_relative_path3\.txt: # 1b # GENERATED = `0`
|
||||
@@ -108,7 +112,7 @@ Generated_with_full_source_path1\.txt: # 2a # GENERATED = `1`
|
||||
Generated_with_full_source_path1\.txt: # 2b # GENERATED = `1`
|
||||
Generated_with_full_source_path1\.txt: # 3a # GENERATED = `1`
|
||||
Generated_with_full_source_path1\.txt: # 3b # GENERATED = `1`
|
||||
CMake Warning \(author\) at CMP0163-Common-Test5\.cmake:[0-9]+ \(set_property\):
|
||||
CMake Warning \(policy\) at CMP0163-Common-Test5\.cmake:[0-9]+ \(set_property\):
|
||||
Policy CMP0118 is not set: GENERATED sources may be used across directories
|
||||
without manual marking\. Run "cmake --help-policy CMP0118" for policy
|
||||
details\. Use the cmake_policy command to set the policy and suppress this
|
||||
@@ -119,7 +123,8 @@ CMake Warning \(author\) at CMP0163-Common-Test5\.cmake:[0-9]+ \(set_property\):
|
||||
Call Stack \(most recent call first\):
|
||||
CMP0118-WARN/CMP0163-WARN-Test5\.cmake:[0-9]+ \(include\)
|
||||
CMakeLists\.txt:[0-9]+ \(include\)
|
||||
This warning is for project developers\. Use -Wno-author to suppress it\.
|
||||
This warning is for project developers\. Use -Wno-author or -Wno-policy to
|
||||
suppress it\.
|
||||
+
|
||||
Generated_with_full_source_path2\.txt: # 1a # GENERATED = `0`
|
||||
Generated_with_full_source_path2\.txt: # 1b # GENERATED = `0`
|
||||
@@ -127,7 +132,7 @@ Generated_with_full_source_path2\.txt: # 2a # GENERATED = `0`
|
||||
Generated_with_full_source_path2\.txt: # 2b # GENERATED = `0`
|
||||
Generated_with_full_source_path2\.txt: # 3a # GENERATED = `0`
|
||||
Generated_with_full_source_path2\.txt: # 3b # GENERATED = `0`
|
||||
CMake Warning \(author\) at CMP0163-Common-Test5\.cmake:[0-9]+ \(set_property\):
|
||||
CMake Warning \(policy\) at CMP0163-Common-Test5\.cmake:[0-9]+ \(set_property\):
|
||||
Policy CMP0118 is not set: GENERATED sources may be used across directories
|
||||
without manual marking\. Run "cmake --help-policy CMP0118" for policy
|
||||
details\. Use the cmake_policy command to set the policy and suppress this
|
||||
@@ -146,7 +151,8 @@ CMake Warning \(author\) at CMP0163-Common-Test5\.cmake:[0-9]+ \(set_property\):
|
||||
Call Stack \(most recent call first\):
|
||||
CMP0118-WARN/CMP0163-WARN-Test5\.cmake:[0-9]+ \(include\)
|
||||
CMakeLists\.txt:[0-9]+ \(include\)
|
||||
This warning is for project developers\. Use -Wno-author to suppress it\.
|
||||
This warning is for project developers\. Use -Wno-author or -Wno-policy to
|
||||
suppress it\.
|
||||
+
|
||||
Generated_with_full_source_path3\.txt: # 1a # GENERATED = `0`
|
||||
Generated_with_full_source_path3\.txt: # 1b # GENERATED = `0`
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
^((CMake Warning \(author\) at subdir-Common-Test7/CMakeLists\.txt:[0-9]+ \(set_property\):
|
||||
^((CMake Warning \(policy\) at subdir-Common-Test7/CMakeLists\.txt:[0-9]+ \(set_property\):
|
||||
Policy CMP0118 is not set: GENERATED sources may be used across directories
|
||||
without manual marking\. Run "cmake --help-policy CMP0118" for policy
|
||||
details\. Use the cmake_policy command to set the policy and suppress this
|
||||
@@ -6,9 +6,10 @@
|
||||
|
||||
Unsetting property 'GENERATED' will not be allowed under policy CMP0118!
|
||||
|
||||
This warning is for project developers\. Use -Wno-author to suppress it\.
|
||||
This warning is for project developers\. Use -Wno-author or -Wno-policy to
|
||||
suppress it\.
|
||||
+)+
|
||||
(CMake Warning \(author\) at CMP0163-Common-Test7\.cmake:[0-9]+ \(add_subdirectory\):
|
||||
(CMake Warning \(policy\) at CMP0163-Common-Test7\.cmake:[0-9]+ \(add_subdirectory\):
|
||||
Policy CMP0118 is not set: GENERATED sources may be used across directories
|
||||
without manual marking\. Run "cmake --help-policy CMP0118" for policy
|
||||
details\. Use the cmake_policy command to set the policy and suppress this
|
||||
@@ -19,7 +20,8 @@ This warning is for project developers\. Use -Wno-author to suppress it\.
|
||||
Call Stack \(most recent call first\):
|
||||
CMP0118-WARN/CMP0163-WARN-Test7\.cmake:[0-9]+ \(include\)
|
||||
CMakeLists\.txt:[0-9]+ \(include\)
|
||||
This warning is for project developers\. Use -Wno-author to suppress it\.
|
||||
This warning is for project developers\. Use -Wno-author or -Wno-policy to
|
||||
suppress it\.
|
||||
+)+)+
|
||||
Generated_source1\.txt: # 1a # GENERATED = `1`
|
||||
Generated_source1\.txt: # 1b # GENERATED = `1`
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
^((CMake Warning \(author\) at subdir-Common-Test9/CMakeLists\.txt:[0-9]+ \(set_property\):
|
||||
^((CMake Warning \(policy\) at subdir-Common-Test9/CMakeLists\.txt:[0-9]+ \(set_property\):
|
||||
Policy CMP0118 is not set: GENERATED sources may be used across directories
|
||||
without manual marking\. Run "cmake --help-policy CMP0118" for policy
|
||||
details\. Use the cmake_policy command to set the policy and suppress this
|
||||
@@ -6,9 +6,10 @@
|
||||
|
||||
Unsetting property 'GENERATED' will not be allowed under policy CMP0118!
|
||||
|
||||
This warning is for project developers\. Use -Wno-author to suppress it\.
|
||||
This warning is for project developers\. Use -Wno-author or -Wno-policy to
|
||||
suppress it\.
|
||||
+)+
|
||||
(CMake Warning \(author\) at CMP0163-Common-Test9\.cmake:[0-9]+ \(add_subdirectory\):
|
||||
(CMake Warning \(policy\) at CMP0163-Common-Test9\.cmake:[0-9]+ \(add_subdirectory\):
|
||||
Policy CMP0118 is not set: GENERATED sources may be used across directories
|
||||
without manual marking\. Run "cmake --help-policy CMP0118" for policy
|
||||
details\. Use the cmake_policy command to set the policy and suppress this
|
||||
@@ -19,7 +20,8 @@ This warning is for project developers\. Use -Wno-author to suppress it\.
|
||||
Call Stack \(most recent call first\):
|
||||
CMP0118-WARN/CMP0163-WARN-Test9\.cmake:[0-9]+ \(include\)
|
||||
CMakeLists\.txt:[0-9]+ \(include\)
|
||||
This warning is for project developers\. Use -Wno-author to suppress it\.
|
||||
This warning is for project developers\. Use -Wno-author or -Wno-policy to
|
||||
suppress it\.
|
||||
+)+)+
|
||||
Generated_source1\.txt: # 1a # GENERATED = `0`
|
||||
Generated_source1\.txt: # 1b # GENERATED = `0`
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
CMake Warning \(author\) at CMP0171-WARN\.cmake:[0-9]+ \(add_custom_target\):
|
||||
CMake Warning \(policy\) at CMP0171-WARN\.cmake:[0-9]+ \(add_custom_target\):
|
||||
Policy CMP0171 is not set: 'codegen' is a reserved target name\. Run "cmake
|
||||
--help-policy CMP0171" for policy details\. Use the cmake_policy command to
|
||||
set the policy and suppress this warning\.
|
||||
@@ -6,4 +6,5 @@ CMake Warning \(author\) at CMP0171-WARN\.cmake:[0-9]+ \(add_custom_target\):
|
||||
The target name "codegen" is reserved\.
|
||||
Call Stack \(most recent call first\):
|
||||
CMakeLists\.txt:[0-9]+ \(include\)
|
||||
This warning is for project developers\. Use -Wno-author to suppress it\.
|
||||
This warning is for project developers\. Use -Wno-author or -Wno-policy to
|
||||
suppress it\.
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
CMake Warning \(author\) at CMP0173-common\.cmake:1 \(include\):
|
||||
CMake Warning \(policy\) at CMP0173-common\.cmake:1 \(include\):
|
||||
Policy CMP0173 is not set: The CMakeFindFrameworks module is removed\. Run
|
||||
"cmake --help-policy CMP0173" for policy details\. Use the cmake_policy
|
||||
command to set the policy and suppress this warning\.
|
||||
@@ -6,7 +6,8 @@ CMake Warning \(author\) at CMP0173-common\.cmake:1 \(include\):
|
||||
Call Stack \(most recent call first\):
|
||||
CMP0173-WARN\.cmake:2 \(include\)
|
||||
CMakeLists\.txt:3 \(include\)
|
||||
This warning is for project developers\. Use -Wno-author to suppress it\.
|
||||
This warning is for project developers\. Use -Wno-author or -Wno-policy to
|
||||
suppress it\.
|
||||
|
||||
CMake Warning \(author\) at .*/Modules/CMakeFindFrameworks\.cmake:[0-9]+ \(message\):
|
||||
CMakeFindFrameworks\.cmake is not maintained and lacks support for more
|
||||
|
||||
@@ -1,31 +1,35 @@
|
||||
CMake Warning \(author\) at [^
|
||||
CMake Warning \(policy\) at [^
|
||||
]+/Tests/RunCMake/CMP0218/CMP0218-WARN\.cmake:[0-9]+ \(set\):
|
||||
Policy CMP0218 is not set: The CMAKE_WARN_DEPRECATED and
|
||||
CMAKE_ERROR_DEPRECATED variables are ignored\. Run "cmake --help-policy
|
||||
CMP0218" for policy details\. Use the cmake_policy command to set the
|
||||
policy and suppress this warning\.
|
||||
This warning is for project developers\. Use -Wno-author to suppress it\.
|
||||
This warning is for project developers\. Use -Wno-author or -Wno-policy to
|
||||
suppress it\.
|
||||
|
||||
CMake Warning \(author\) at [^
|
||||
CMake Warning \(policy\) at [^
|
||||
]+/Tests/RunCMake/CMP0218/CMP0218-WARN\.cmake:[0-9]+ \(set\):
|
||||
Policy CMP0218 is not set: The CMAKE_WARN_DEPRECATED and
|
||||
CMAKE_ERROR_DEPRECATED variables are ignored\. Run "cmake --help-policy
|
||||
CMP0218" for policy details\. Use the cmake_policy command to set the
|
||||
policy and suppress this warning\.
|
||||
This warning is for project developers\. Use -Wno-author to suppress it\.
|
||||
This warning is for project developers\. Use -Wno-author or -Wno-policy to
|
||||
suppress it\.
|
||||
|
||||
CMake Warning \(author\) at [^
|
||||
CMake Warning \(policy\) at [^
|
||||
]+/Tests/RunCMake/CMP0218/CMP0218-WARN\.cmake:[0-9]+ \(set\):
|
||||
Policy CMP0218 is not set: The CMAKE_WARN_DEPRECATED and
|
||||
CMAKE_ERROR_DEPRECATED variables are ignored\. Run "cmake --help-policy
|
||||
CMP0218" for policy details\. Use the cmake_policy command to set the
|
||||
policy and suppress this warning\.
|
||||
This warning is for project developers\. Use -Wno-author to suppress it\.
|
||||
This warning is for project developers\. Use -Wno-author or -Wno-policy to
|
||||
suppress it\.
|
||||
|
||||
CMake Warning \(author\) at [^
|
||||
CMake Warning \(policy\) at [^
|
||||
]+/Tests/RunCMake/CMP0218/CMP0218-WARN\.cmake:[0-9]+ \(set\):
|
||||
Policy CMP0218 is not set: The CMAKE_WARN_DEPRECATED and
|
||||
CMAKE_ERROR_DEPRECATED variables are ignored\. Run "cmake --help-policy
|
||||
CMP0218" for policy details\. Use the cmake_policy command to set the
|
||||
policy and suppress this warning\.
|
||||
This warning is for project developers\. Use -Wno-author to suppress it\.
|
||||
This warning is for project developers\. Use -Wno-author or -Wno-policy to
|
||||
suppress it\.
|
||||
|
||||
@@ -1,11 +1,12 @@
|
||||
^CMake Warning \(author\) at CMP0145-Dart-WARN\.cmake:[0-9]+ \(include\):
|
||||
^CMake Warning \(policy\) at CMP0145-Dart-WARN\.cmake:[0-9]+ \(include\):
|
||||
Policy CMP0145 is not set: The Dart and FindDart modules are removed\. Run
|
||||
"cmake --help-policy CMP0145" for policy details\. Use the cmake_policy
|
||||
command to set the policy and suppress this warning\.
|
||||
|
||||
Call Stack \(most recent call first\):
|
||||
CMakeLists\.txt:[0-9]+ \(include\)
|
||||
This warning is for project developers\. Use -Wno-author to suppress it\.
|
||||
This warning is for project developers\. Use -Wno-author or -Wno-policy to
|
||||
suppress it\.
|
||||
+
|
||||
CMake Warning \(author\) at [^
|
||||
]*/Modules/Dart\.cmake:[0-9]+ \(message\):
|
||||
@@ -18,7 +19,7 @@ Call Stack \(most recent call first\):
|
||||
This warning is for project developers\. Use -Wno-author to suppress it\.
|
||||
+
|
||||
CMake Warning \(deprecated\) at [^
|
||||
]*/Modules/Dart\.cmake:[0-9]+6 \(cmake_policy\):
|
||||
]*/Modules/Dart\.cmake:[0-9]+ \(cmake_policy\):
|
||||
The OLD behavior for policy CMP0145 will be removed from a future version
|
||||
of CMake\.
|
||||
|
||||
|
||||
Some files were not shown because too many files have changed in this diff Show More
Reference in New Issue
Block a user