mirror of
https://github.com/Kitware/CMake.git
synced 2026-05-25 09:58:37 -05:00
Merge topic 'find-events-without-debugging'
0e53a67a7bcmFindPackage: fix over-reporting8b3fc9578acmFindPackageCommand: report found files to debugging infraee062ce4d0cmFindCommon: test implicit configure log event reportinga90598f17ccmFindCommon: support suppressing implicit event logging5aefc8b7b8cmFindBase: let the debug state know if it has already been found928a74f684cmFindCommon: always track configure log information4fa647a544Tests: Match RunCMake.try_{compile,run} configure log more precisely Acked-by: Kitware Robot <kwrobot@kitware.com> Tested-by: buildbot <buildbot@kitware.com> Merge-request: !10783
This commit is contained in:
+22
-7
@@ -90,6 +90,10 @@ bool cmFindBase::ParseArguments(std::vector<std::string> const& argsIn)
|
||||
this->VariableName = args[0];
|
||||
this->InitialState = this->GetInitialState();
|
||||
if (this->IsFound()) {
|
||||
if (this->DebugState) {
|
||||
this->DebugState->FoundAt(
|
||||
*this->Makefile->GetDefinition(this->VariableName));
|
||||
}
|
||||
return true;
|
||||
}
|
||||
|
||||
@@ -524,6 +528,7 @@ bool cmFindBase::IsDefined() const
|
||||
|
||||
void cmFindBase::NormalizeFindResult()
|
||||
{
|
||||
std::string foundValue;
|
||||
if (this->Makefile->GetPolicyStatus(cmPolicies::CMP0125) ==
|
||||
cmPolicies::NEW) {
|
||||
// ensure the path returned by find_* command is absolute
|
||||
@@ -542,6 +547,7 @@ void cmFindBase::NormalizeFindResult()
|
||||
}
|
||||
}
|
||||
|
||||
foundValue = value;
|
||||
if (this->StoreResultInCache) {
|
||||
// If the user specifies the entry on the command line without a
|
||||
// type we should add the type and docstring but keep the original
|
||||
@@ -571,6 +577,10 @@ void cmFindBase::NormalizeFindResult()
|
||||
// type we should add the type and docstring but keep the original
|
||||
// value.
|
||||
if (this->StoreResultInCache) {
|
||||
auto const& existingValue =
|
||||
this->Makefile->GetCMakeInstance()->GetCacheDefinition(
|
||||
this->VariableName);
|
||||
foundValue = *existingValue;
|
||||
if (this->AlreadyInCacheWithoutMetaInfo) {
|
||||
this->Makefile->AddCacheDefinition(this->VariableName, "",
|
||||
this->VariableDocumentation,
|
||||
@@ -578,19 +588,20 @@ void cmFindBase::NormalizeFindResult()
|
||||
if (this->Makefile->GetPolicyStatus(cmPolicies::CMP0126) ==
|
||||
cmPolicies::NEW &&
|
||||
this->Makefile->IsNormalDefinitionSet(this->VariableName)) {
|
||||
this->Makefile->AddDefinition(
|
||||
this->VariableName,
|
||||
*this->Makefile->GetCMakeInstance()->GetCacheDefinition(
|
||||
this->VariableName));
|
||||
this->Makefile->AddDefinition(this->VariableName, *existingValue);
|
||||
}
|
||||
}
|
||||
} else {
|
||||
auto const& existingValue =
|
||||
this->Makefile->GetSafeDefinition(this->VariableName);
|
||||
foundValue = existingValue;
|
||||
// ensure a normal variable is defined.
|
||||
this->Makefile->AddDefinition(
|
||||
this->VariableName,
|
||||
this->Makefile->GetSafeDefinition(this->VariableName));
|
||||
this->Makefile->AddDefinition(this->VariableName, existingValue);
|
||||
}
|
||||
}
|
||||
if (this->DebugState) {
|
||||
this->DebugState->FoundAt(foundValue);
|
||||
}
|
||||
}
|
||||
|
||||
void cmFindBase::StoreFindResult(std::string const& value)
|
||||
@@ -613,6 +624,10 @@ void cmFindBase::StoreFindResult(std::string const& value)
|
||||
this->Makefile->AddDefinition(this->VariableName, value);
|
||||
}
|
||||
|
||||
if (this->DebugState) {
|
||||
this->DebugState->FoundAt(value);
|
||||
}
|
||||
|
||||
return;
|
||||
}
|
||||
|
||||
|
||||
+22
-9
@@ -47,6 +47,7 @@ cmFindCommon::cmFindCommon(cmExecutionStatus& status)
|
||||
, Status(status)
|
||||
{
|
||||
this->FindRootPathMode = RootPathModeBoth;
|
||||
this->FullDebugMode = false;
|
||||
this->NoDefaultPath = false;
|
||||
this->NoPackageRootPath = false;
|
||||
this->NoCMakePath = false;
|
||||
@@ -92,7 +93,7 @@ void cmFindCommon::SetError(std::string const& e)
|
||||
|
||||
bool cmFindCommon::DebugModeEnabled() const
|
||||
{
|
||||
return static_cast<bool>(this->DebugState);
|
||||
return this->FullDebugMode;
|
||||
}
|
||||
|
||||
void cmFindCommon::DebugMessage(std::string const& msg) const
|
||||
@@ -506,24 +507,36 @@ void cmFindCommonDebugState::FailedAt(std::string const& path,
|
||||
this->FailedAtImpl(path, regexName);
|
||||
}
|
||||
|
||||
bool cmFindCommonDebugState::ShouldImplicitlyLogEvents() const
|
||||
{
|
||||
return true;
|
||||
}
|
||||
|
||||
void cmFindCommonDebugState::Write()
|
||||
{
|
||||
auto const* const fc = this->FindCommand;
|
||||
|
||||
#ifndef CMAKE_BOOTSTRAP
|
||||
// Write find event to the configure log if the log exists
|
||||
if (cmConfigureLog* log =
|
||||
this->FindCommand->Makefile->GetCMakeInstance()->GetConfigureLog()) {
|
||||
fc->Makefile->GetCMakeInstance()->GetConfigureLog()) {
|
||||
// Write event if any of:
|
||||
// - the variable was not defined (first run)
|
||||
// - the variable found state does not match the new found state (state
|
||||
// transition)
|
||||
if (!this->FindCommand->IsDefined() ||
|
||||
this->FindCommand->IsFound() != this->IsFound) {
|
||||
this->WriteEvent(*log, *this->FindCommand->Makefile);
|
||||
// - debug mode is enabled
|
||||
// - implicit logging should happen and:
|
||||
// - the variable was not defined (first run)
|
||||
// - the variable found state does not match the new found state (state
|
||||
// transition)
|
||||
if (fc->DebugModeEnabled() ||
|
||||
(this->ShouldImplicitlyLogEvents() &&
|
||||
(!fc->IsDefined() || fc->IsFound() != this->IsFound))) {
|
||||
this->WriteEvent(*log, *fc->Makefile);
|
||||
}
|
||||
}
|
||||
#endif
|
||||
|
||||
this->WriteDebug();
|
||||
if (fc->DebugModeEnabled()) {
|
||||
this->WriteDebug();
|
||||
}
|
||||
}
|
||||
|
||||
#ifndef CMAKE_BOOTSTRAP
|
||||
|
||||
@@ -136,6 +136,7 @@ protected:
|
||||
void AddPathSuffix(std::string const& arg);
|
||||
|
||||
void DebugMessage(std::string const& msg) const;
|
||||
bool FullDebugMode;
|
||||
std::unique_ptr<cmFindCommonDebugState> DebugState;
|
||||
bool NoDefaultPath;
|
||||
bool NoPackageRootPath;
|
||||
@@ -184,6 +185,7 @@ protected:
|
||||
virtual void FoundAtImpl(std::string const& path, std::string regexName) = 0;
|
||||
virtual void FailedAtImpl(std::string const& path,
|
||||
std::string regexName) = 0;
|
||||
virtual bool ShouldImplicitlyLogEvents() const;
|
||||
|
||||
virtual void WriteDebug() const = 0;
|
||||
#ifndef CMAKE_BOOTSTRAP
|
||||
|
||||
@@ -44,9 +44,8 @@ bool cmFindLibraryCommand::InitialPass(std::vector<std::string> const& argsIn)
|
||||
return false;
|
||||
}
|
||||
|
||||
if (this->ComputeIfDebugModeWanted(this->VariableName)) {
|
||||
this->DebugState = cm::make_unique<cmFindBaseDebugState>(this);
|
||||
}
|
||||
this->DebugState = cm::make_unique<cmFindBaseDebugState>(this);
|
||||
this->FullDebugMode = this->ComputeIfDebugModeWanted(this->VariableName);
|
||||
|
||||
if (this->IsFound()) {
|
||||
this->NormalizeFindResult();
|
||||
|
||||
@@ -614,15 +614,13 @@ void cmFindPackageCommand::InheritOptions(cmFindPackageCommand* other)
|
||||
|
||||
bool cmFindPackageCommand::IsFound() const
|
||||
{
|
||||
return !this->FileFound.empty();
|
||||
return this->InitialState == FindState::Found;
|
||||
}
|
||||
|
||||
bool cmFindPackageCommand::IsDefined() const
|
||||
{
|
||||
// A `find_package` always needs to be rerun because it could create
|
||||
// variables, provide commands, or targets. Therefore it is never
|
||||
// "predefined" whether it is found or not.
|
||||
return false;
|
||||
return this->InitialState == FindState::Found ||
|
||||
this->InitialState == FindState::NotFound;
|
||||
}
|
||||
|
||||
bool cmFindPackageCommand::InitialPass(std::vector<std::string> const& args)
|
||||
@@ -728,9 +726,8 @@ bool cmFindPackageCommand::InitialPass(std::vector<std::string> const& args)
|
||||
|
||||
// Process debug mode
|
||||
cmMakefile::DebugFindPkgRAII debugFindPkgRAII(this->Makefile, this->Name);
|
||||
if (this->ComputeIfDebugModeWanted()) {
|
||||
this->DebugState = cm::make_unique<cmFindPackageDebugState>(this);
|
||||
}
|
||||
this->DebugState = cm::make_unique<cmFindPackageDebugState>(this);
|
||||
this->FullDebugMode = this->ComputeIfDebugModeWanted();
|
||||
|
||||
// Parse the arguments.
|
||||
enum Doing
|
||||
@@ -934,6 +931,41 @@ bool cmFindPackageCommand::InitialPass(std::vector<std::string> const& args)
|
||||
return false;
|
||||
}
|
||||
|
||||
bool canBeIrrelevant = true;
|
||||
if (this->UseConfigFiles || this->UseCpsFiles) {
|
||||
canBeIrrelevant = false;
|
||||
if (cmValue v = this->Makefile->GetState()->GetCacheEntryValue(
|
||||
cmStrCat(this->Name, "_DIR"))) {
|
||||
if (!v.IsNOTFOUND()) {
|
||||
this->InitialState = FindState::Found;
|
||||
} else {
|
||||
this->InitialState = FindState::NotFound;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
if (this->UseFindModules &&
|
||||
(this->InitialState == FindState::Undefined ||
|
||||
this->InitialState == FindState::NotFound)) {
|
||||
// There are no definitive cache variables to know if a given `Find` module
|
||||
// has been searched for or not. However, if we have a `_FOUND` variable,
|
||||
// use that as an indication of a previous search.
|
||||
if (cmValue v =
|
||||
this->Makefile->GetDefinition(cmStrCat(this->Name, "_FOUND"))) {
|
||||
if (v.IsOn()) {
|
||||
this->InitialState = FindState::Found;
|
||||
} else {
|
||||
this->InitialState = FindState::NotFound;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
// If there is no signaling variable and there's no reason to expect a cache
|
||||
// variable, mark the initial state as "irrelevant".
|
||||
if (this->InitialState == FindState::Undefined && canBeIrrelevant) {
|
||||
this->InitialState = FindState::Irrelevant;
|
||||
}
|
||||
|
||||
// Ignore EXACT with no version.
|
||||
if (this->VersionComplete.empty() && this->VersionExact) {
|
||||
this->VersionExact = false;
|
||||
@@ -1132,6 +1164,9 @@ bool cmFindPackageCommand::FindPackage(
|
||||
if (this->DebugModeEnabled()) {
|
||||
this->DebugMessage("Package was found by the dependency provider");
|
||||
}
|
||||
if (this->DebugState) {
|
||||
this->DebugState->FoundAt(searchPath);
|
||||
}
|
||||
this->FileFound = searchPath;
|
||||
this->FileFoundMode = FoundPackageMode::Provider;
|
||||
this->AppendSuccessInformation();
|
||||
@@ -1525,31 +1560,34 @@ bool cmFindPackageCommand::FindModule(bool& found)
|
||||
bool result = this->ReadListFile(mfile, DoPolicyScope);
|
||||
this->Makefile->RemoveDefinition(var);
|
||||
|
||||
if (this->DebugModeEnabled()) {
|
||||
std::string const foundVar = cmStrCat(this->Name, "_FOUND");
|
||||
if (this->Makefile->IsDefinitionSet(foundVar) &&
|
||||
!this->Makefile->IsOn(foundVar)) {
|
||||
std::string const foundVar = cmStrCat(this->Name, "_FOUND");
|
||||
if (this->Makefile->IsDefinitionSet(foundVar) &&
|
||||
!this->Makefile->IsOn(foundVar)) {
|
||||
|
||||
if (this->DebugModeEnabled()) {
|
||||
this->DebugBuffer = cmStrCat(
|
||||
this->DebugBuffer, "The module is considered not found due to ",
|
||||
foundVar, " being FALSE.");
|
||||
}
|
||||
|
||||
this->ConsideredPaths.emplace_back(mfile, FoundPackageMode::Module,
|
||||
SearchResult::NotFound);
|
||||
std::string const notFoundMessageVar =
|
||||
cmStrCat(this->Name, "_NOT_FOUND_MESSAGE");
|
||||
if (cmValue notFoundMessage =
|
||||
this->Makefile->GetDefinition(notFoundMessageVar)) {
|
||||
this->ConsideredPaths.emplace_back(mfile, FoundPackageMode::Module,
|
||||
SearchResult::NotFound);
|
||||
std::string const notFoundMessageVar =
|
||||
cmStrCat(this->Name, "_NOT_FOUND_MESSAGE");
|
||||
if (cmValue notFoundMessage =
|
||||
this->Makefile->GetDefinition(notFoundMessageVar)) {
|
||||
|
||||
this->ConsideredPaths.back().Message = *notFoundMessage;
|
||||
}
|
||||
} else {
|
||||
this->FileFound = mfile;
|
||||
this->FileFoundMode = FoundPackageMode::Module;
|
||||
std::string const versionVar = cmStrCat(this->Name, "_VERSION");
|
||||
if (cmValue version = this->Makefile->GetDefinition(versionVar)) {
|
||||
this->VersionFound = *version;
|
||||
}
|
||||
this->ConsideredPaths.back().Message = *notFoundMessage;
|
||||
}
|
||||
} else {
|
||||
if (this->DebugState) {
|
||||
this->DebugState->FoundAt(mfile);
|
||||
}
|
||||
this->FileFound = mfile;
|
||||
this->FileFoundMode = FoundPackageMode::Module;
|
||||
std::string const versionVar = cmStrCat(this->Name, "_VERSION");
|
||||
if (cmValue version = this->Makefile->GetDefinition(versionVar)) {
|
||||
this->VersionFound = *version;
|
||||
}
|
||||
}
|
||||
return result;
|
||||
@@ -1582,6 +1620,9 @@ bool cmFindPackageCommand::HandlePackageMode(
|
||||
std::string file;
|
||||
FoundPackageMode foundMode = FoundPackageMode::None;
|
||||
if (this->FindConfigFile(dir, pdt::Any, file, foundMode)) {
|
||||
if (this->DebugState) {
|
||||
this->DebugState->FoundAt(file);
|
||||
}
|
||||
this->FileFound = std::move(file);
|
||||
this->FileFoundMode = foundMode;
|
||||
fileFound = true;
|
||||
@@ -3469,6 +3510,19 @@ void cmFindPackageDebugState::FailedAtImpl(std::string const& path,
|
||||
(void)regexName;
|
||||
}
|
||||
|
||||
bool cmFindPackageDebugState::ShouldImplicitlyLogEvents() const
|
||||
{
|
||||
auto const* fpc = this->FindPackageCommand;
|
||||
bool const canUsePackage = fpc->UseConfigFiles || fpc->UseCpsFiles;
|
||||
return canUsePackage &&
|
||||
fpc->FileFoundMode != cmFindPackageCommand::FoundPackageMode::Module &&
|
||||
std::any_of(fpc->ConsideredPaths.begin(), fpc->ConsideredPaths.end(),
|
||||
[](cmFindPackageCommand::ConsideredPath const& cp) {
|
||||
return cp.Mode >
|
||||
cmFindPackageCommand::FoundPackageMode::Module;
|
||||
});
|
||||
}
|
||||
|
||||
void cmFindPackageDebugState::WriteDebug() const
|
||||
{
|
||||
}
|
||||
@@ -3669,7 +3723,7 @@ void cmFindPackageDebugState::WriteEvent(cmConfigureLog& log,
|
||||
log.EndObject();
|
||||
}
|
||||
// TODO: Add provider information (see #26925)
|
||||
if (fpc->IsFound()) {
|
||||
if (!fpc->FileFound.empty()) {
|
||||
log.BeginObject("found"_s);
|
||||
log.WriteValue("path"_s, fpc->FileFound);
|
||||
log.WriteValue("mode"_s, found_mode(fpc->FileFoundMode));
|
||||
|
||||
@@ -184,6 +184,7 @@ private:
|
||||
{
|
||||
None,
|
||||
Module,
|
||||
// Do not implicitly log for prior package types.
|
||||
Config,
|
||||
Cps,
|
||||
Provider,
|
||||
@@ -365,6 +366,15 @@ private:
|
||||
|
||||
friend struct std::hash<ConfigFileInfo>;
|
||||
friend class cmFindPackageDebugState;
|
||||
|
||||
enum class FindState
|
||||
{
|
||||
Undefined,
|
||||
Irrelevant,
|
||||
Found,
|
||||
NotFound,
|
||||
};
|
||||
FindState InitialState = FindState::Undefined;
|
||||
};
|
||||
|
||||
namespace std {
|
||||
@@ -395,6 +405,7 @@ public:
|
||||
private:
|
||||
void FoundAtImpl(std::string const& path, std::string regexName) override;
|
||||
void FailedAtImpl(std::string const& path, std::string regexName) override;
|
||||
bool ShouldImplicitlyLogEvents() const override;
|
||||
|
||||
void WriteDebug() const override;
|
||||
#ifndef CMAKE_BOOTSTRAP
|
||||
|
||||
@@ -38,9 +38,8 @@ bool cmFindPathCommand::InitialPass(std::vector<std::string> const& argsIn)
|
||||
return false;
|
||||
}
|
||||
|
||||
if (this->ComputeIfDebugModeWanted(this->VariableName)) {
|
||||
this->DebugState = cm::make_unique<cmFindBaseDebugState>(this);
|
||||
}
|
||||
this->DebugState = cm::make_unique<cmFindBaseDebugState>(this);
|
||||
this->FullDebugMode = this->ComputeIfDebugModeWanted(this->VariableName);
|
||||
|
||||
if (this->IsFound()) {
|
||||
this->NormalizeFindResult();
|
||||
|
||||
@@ -199,9 +199,8 @@ bool cmFindProgramCommand::InitialPass(std::vector<std::string> const& argsIn)
|
||||
if (!this->ParseArguments(argsIn)) {
|
||||
return false;
|
||||
}
|
||||
if (this->ComputeIfDebugModeWanted(this->VariableName)) {
|
||||
this->DebugState = cm::make_unique<cmFindBaseDebugState>(this);
|
||||
}
|
||||
this->DebugState = cm::make_unique<cmFindBaseDebugState>(this);
|
||||
this->FullDebugMode = this->ComputeIfDebugModeWanted(this->VariableName);
|
||||
|
||||
if (this->IsFound()) {
|
||||
this->NormalizeFindResult();
|
||||
|
||||
@@ -0,0 +1,171 @@
|
||||
^
|
||||
---
|
||||
events:
|
||||
-
|
||||
events:(
|
||||
-
|
||||
kind: "find-v1"(
|
||||
[^
|
||||
]*)+|
|
||||
+ -
|
||||
kind: "message-v1"
|
||||
backtrace:(
|
||||
- "[^"]+")+
|
||||
message: \|(
|
||||
+ [^
|
||||
]*)*)*
|
||||
-
|
||||
kind: "message-v1"
|
||||
backtrace:
|
||||
- "ConfigureLogTransitions.cmake:[0-9]+ \(message\)"
|
||||
- "CMakeLists.txt:[0-9]+ \(include\)"
|
||||
message: |
|
||||
NotDefined -> NotFound
|
||||
-
|
||||
kind: "find-v1"
|
||||
backtrace:
|
||||
- "ConfigureLogTransitions.cmake:[0-9]+ \(find_file\)"
|
||||
- "CMakeLists.txt:[0-9]+ \(include\)"
|
||||
mode: "file"
|
||||
variable: "NOEXIST_FILE"
|
||||
description: "Path to a file."
|
||||
settings:
|
||||
SearchFramework: "(NEVER|FIRST)"
|
||||
SearchAppBundle: "(NEVER|FIRST)"
|
||||
CMAKE_FIND_USE_CMAKE_PATH: true
|
||||
CMAKE_FIND_USE_CMAKE_ENVIRONMENT_PATH: true
|
||||
CMAKE_FIND_USE_SYSTEM_ENVIRONMENT_PATH: true
|
||||
CMAKE_FIND_USE_CMAKE_SYSTEM_PATH: true
|
||||
CMAKE_FIND_USE_INSTALL_PREFIX: true
|
||||
names:
|
||||
- "NoExist.h"
|
||||
candidate_directories:
|
||||
- ".*/Tests/RunCMake/find_file/include/"
|
||||
- ".*/Tests/RunCMake/find_file/"(
|
||||
- "[^"]+")+
|
||||
searched_directories:
|
||||
- ".*/Tests/RunCMake/find_file/include/NoExist.h"
|
||||
- ".*/Tests/RunCMake/find_file/NoExist.h"(
|
||||
- "[^"]+")+
|
||||
found: false
|
||||
search_context:(
|
||||
[^
|
||||
]*)+
|
||||
-
|
||||
kind: "message-v1"
|
||||
backtrace:
|
||||
- "ConfigureLogTransitions.cmake:[0-9]+ \(find_file\)"
|
||||
- "CMakeLists.txt:[0-9]+ \(include\)"
|
||||
message: |
|
||||
NotFound -> NotFound
|
||||
-
|
||||
kind: "message-v1"
|
||||
backtrace:
|
||||
- "ConfigureLogTransitions.cmake:[0-9]+ \(find_file\)"
|
||||
- "CMakeLists.txt:[0-9]+ \(include\)"
|
||||
message: |
|
||||
NotDefined -> Found
|
||||
-
|
||||
kind: "find-v1"
|
||||
backtrace:
|
||||
- "ConfigureLogTransitions.cmake:[0-9]+ \(find_file\)"
|
||||
- "CMakeLists.txt:[0-9]+ \(include\)"
|
||||
mode: "file"
|
||||
variable: "PREFIX_IN_PATH"
|
||||
description: "Path to a file."
|
||||
settings:
|
||||
SearchFramework: "(NEVER|FIRST)"
|
||||
SearchAppBundle: "(NEVER|FIRST)"
|
||||
CMAKE_FIND_USE_CMAKE_PATH: true
|
||||
CMAKE_FIND_USE_CMAKE_ENVIRONMENT_PATH: true
|
||||
CMAKE_FIND_USE_SYSTEM_ENVIRONMENT_PATH: true
|
||||
CMAKE_FIND_USE_CMAKE_SYSTEM_PATH: true
|
||||
CMAKE_FIND_USE_INSTALL_PREFIX: true
|
||||
names:
|
||||
- "PrefixInPATH.h"
|
||||
candidate_directories:
|
||||
- ".*/Tests/RunCMake/find_file/include/"
|
||||
- ".*/Tests/RunCMake/find_file/"(
|
||||
- "[^"]+")+
|
||||
found: ".*/Tests/RunCMake/find_file/include/PrefixInPATH.h"
|
||||
search_context:(
|
||||
[^
|
||||
]*)+
|
||||
-
|
||||
kind: "message-v1"
|
||||
backtrace:
|
||||
- "ConfigureLogTransitions.cmake:[0-9]+ \(find_file\)"
|
||||
- "CMakeLists.txt:[0-9]+ \(include\)"
|
||||
message: |
|
||||
Found -> Found
|
||||
-
|
||||
kind: "message-v1"
|
||||
backtrace:
|
||||
- "ConfigureLogTransitions.cmake:[0-9]+ \(find_file\)"
|
||||
- "CMakeLists.txt:[0-9]+ \(include\)"
|
||||
message: |
|
||||
Found -> NotFound
|
||||
-
|
||||
kind: "find-v1"
|
||||
backtrace:
|
||||
- "ConfigureLogTransitions.cmake:[0-9]+ \(find_file\)"
|
||||
- "CMakeLists.txt:[0-9]+ \(include\)"
|
||||
mode: "file"
|
||||
variable: "PREFIX_IN_PATH"
|
||||
description: "Path to a file."
|
||||
settings:
|
||||
SearchFramework: "(NEVER|FIRST)"
|
||||
SearchAppBundle: "(NEVER|FIRST)"
|
||||
CMAKE_FIND_USE_CMAKE_PATH: true
|
||||
CMAKE_FIND_USE_CMAKE_ENVIRONMENT_PATH: true
|
||||
CMAKE_FIND_USE_SYSTEM_ENVIRONMENT_PATH: true
|
||||
CMAKE_FIND_USE_CMAKE_SYSTEM_PATH: true
|
||||
CMAKE_FIND_USE_INSTALL_PREFIX: true
|
||||
names:
|
||||
- "PrefixInPATH.h"
|
||||
candidate_directories:
|
||||
- ".*/Tests/RunCMake/find_file/include/"
|
||||
- ".*/Tests/RunCMake/find_file/"(
|
||||
- "[^"]+")+
|
||||
searched_directories:
|
||||
- ".*/Tests/RunCMake/find_file/include/NoExist.h"
|
||||
- ".*/Tests/RunCMake/find_file/NoExist.h"(
|
||||
- "[^"]+")+
|
||||
found: false
|
||||
search_context:(
|
||||
[^
|
||||
]*)+
|
||||
-
|
||||
kind: "message-v1"
|
||||
backtrace:
|
||||
- "ConfigureLogTransitions.cmake:[0-9]+ \(find_file\)"
|
||||
- "CMakeLists.txt:[0-9]+ \(include\)"
|
||||
message: |
|
||||
NotFound -> Found
|
||||
-
|
||||
kind: "find-v1"
|
||||
backtrace:
|
||||
- "ConfigureLogTransitions.cmake:[0-9]+ \(find_file\)"
|
||||
- "CMakeLists.txt:[0-9]+ \(include\)"
|
||||
mode: "file"
|
||||
variable: "PREFIX_IN_PATH"
|
||||
description: "Path to a file."
|
||||
settings:
|
||||
SearchFramework: "(NEVER|FIRST)"
|
||||
SearchAppBundle: "(NEVER|FIRST)"
|
||||
CMAKE_FIND_USE_CMAKE_PATH: true
|
||||
CMAKE_FIND_USE_CMAKE_ENVIRONMENT_PATH: true
|
||||
CMAKE_FIND_USE_SYSTEM_ENVIRONMENT_PATH: true
|
||||
CMAKE_FIND_USE_CMAKE_SYSTEM_PATH: true
|
||||
CMAKE_FIND_USE_INSTALL_PREFIX: true
|
||||
names:
|
||||
- "PrefixInPATH.h"
|
||||
candidate_directories:
|
||||
- ".*/Tests/RunCMake/find_file/include/"
|
||||
- ".*/Tests/RunCMake/find_file/"(
|
||||
- "[^"]+")+
|
||||
found: ".*/Tests/RunCMake/find_file/include/PrefixInPATH.h"
|
||||
search_context:(
|
||||
[^
|
||||
]*)+
|
||||
...
|
||||
@@ -0,0 +1,22 @@
|
||||
set(CMAKE_PREFIX_PATH "${CMAKE_CURRENT_SOURCE_DIR}")
|
||||
|
||||
message(CONFIGURE_LOG "NotDefined -> NotFound")
|
||||
find_file(NOEXIST_FILE NAMES NoExist.h)
|
||||
|
||||
message(CONFIGURE_LOG "NotFound -> NotFound")
|
||||
find_file(NOEXIST_FILE NAMES NoExist.h)
|
||||
|
||||
message(CONFIGURE_LOG "NotDefined -> Found")
|
||||
find_file(PREFIX_IN_PATH NAMES PrefixInPATH.h)
|
||||
|
||||
message(CONFIGURE_LOG "Found -> Found")
|
||||
find_file(PREFIX_IN_PATH NAMES PrefixInPATH.h)
|
||||
|
||||
message(CONFIGURE_LOG "Found -> NotFound")
|
||||
unset(PREFIX_IN_PATH CACHE)
|
||||
unset(CMAKE_PREFIX_PATH)
|
||||
find_file(PREFIX_IN_PATH NAMES PrefixInPATH.h)
|
||||
|
||||
message(CONFIGURE_LOG "NotFound -> Found")
|
||||
set(CMAKE_PREFIX_PATH "${CMAKE_CURRENT_SOURCE_DIR}")
|
||||
find_file(PREFIX_IN_PATH NAMES PrefixInPATH.h)
|
||||
@@ -1,5 +1,6 @@
|
||||
include(RunCMake)
|
||||
|
||||
run_cmake(ConfigureLogTransitions)
|
||||
run_cmake(FromPATHEnv)
|
||||
run_cmake(FromPrefixPath)
|
||||
run_cmake(PrefixInPATH)
|
||||
|
||||
@@ -0,0 +1,167 @@
|
||||
^
|
||||
---
|
||||
events:
|
||||
-
|
||||
events:(
|
||||
-
|
||||
kind: "find-v1"(
|
||||
[^
|
||||
]*)+|
|
||||
+ -
|
||||
kind: "message-v1"
|
||||
backtrace:(
|
||||
- "[^"]+")+
|
||||
message: \|(
|
||||
+ [^
|
||||
]*)*)*
|
||||
-
|
||||
kind: "message-v1"
|
||||
backtrace:
|
||||
- "ConfigureLogTransitions.cmake:[0-9]+ \(message\)"
|
||||
- "CMakeLists.txt:[0-9]+ \(include\)"
|
||||
message: |
|
||||
NotDefined -> NotFound
|
||||
-
|
||||
kind: "find-v1"
|
||||
backtrace:
|
||||
- "ConfigureLogTransitions.cmake:[0-9]+ \(find_library\)"
|
||||
- "CMakeLists.txt:[0-9]+ \(include\)"
|
||||
mode: "library"
|
||||
variable: "NOEXIST_FILE"
|
||||
description: "Path to a library."
|
||||
settings:
|
||||
SearchFramework: "(NEVER|FIRST)"
|
||||
SearchAppBundle: "(NEVER|FIRST)"
|
||||
CMAKE_FIND_USE_CMAKE_PATH: true
|
||||
CMAKE_FIND_USE_CMAKE_ENVIRONMENT_PATH: true
|
||||
CMAKE_FIND_USE_SYSTEM_ENVIRONMENT_PATH: true
|
||||
CMAKE_FIND_USE_CMAKE_SYSTEM_PATH: true
|
||||
CMAKE_FIND_USE_INSTALL_PREFIX: true
|
||||
names:
|
||||
- "NoExist"
|
||||
candidate_directories:
|
||||
- ".*/Tests/RunCMake/find_library/lib/"
|
||||
- ".*/Tests/RunCMake/find_library/"(
|
||||
- "[^"]+")+
|
||||
searched_directories:
|
||||
- ".*/Tests/RunCMake/find_library/lib/"
|
||||
- ".*/Tests/RunCMake/find_library/"(
|
||||
- "[^"]+")+
|
||||
found: false
|
||||
search_context:(
|
||||
[^
|
||||
]*)+
|
||||
-
|
||||
kind: "message-v1"
|
||||
backtrace:
|
||||
- "ConfigureLogTransitions.cmake:[0-9]+ \(find_library\)"
|
||||
- "CMakeLists.txt:[0-9]+ \(include\)"
|
||||
message: |
|
||||
NotFound -> NotFound
|
||||
-
|
||||
kind: "message-v1"
|
||||
backtrace:
|
||||
- "ConfigureLogTransitions.cmake:[0-9]+ \(find_library\)"
|
||||
- "CMakeLists.txt:[0-9]+ \(include\)"
|
||||
message: |
|
||||
NotDefined -> Found
|
||||
-
|
||||
kind: "find-v1"
|
||||
backtrace:
|
||||
- "ConfigureLogTransitions.cmake:[0-9]+ \(find_library\)"
|
||||
- "CMakeLists.txt:[0-9]+ \(include\)"
|
||||
mode: "library"
|
||||
variable: "PREFIX_IN_PATH"
|
||||
description: "Path to a library."
|
||||
settings:
|
||||
SearchFramework: "(NEVER|FIRST)"
|
||||
SearchAppBundle: "(NEVER|FIRST)"
|
||||
CMAKE_FIND_USE_CMAKE_PATH: true
|
||||
CMAKE_FIND_USE_CMAKE_ENVIRONMENT_PATH: true
|
||||
CMAKE_FIND_USE_SYSTEM_ENVIRONMENT_PATH: true
|
||||
CMAKE_FIND_USE_CMAKE_SYSTEM_PATH: true
|
||||
CMAKE_FIND_USE_INSTALL_PREFIX: true
|
||||
names:
|
||||
- "PrefixInPATH"
|
||||
candidate_directories:
|
||||
- ".*/Tests/RunCMake/find_library/lib/"
|
||||
- ".*/Tests/RunCMake/find_library/"(
|
||||
- "[^"]+")+
|
||||
found: ".*/Tests/RunCMake/find_library/lib/libPrefixInPATH.a"
|
||||
search_context:(
|
||||
[^
|
||||
]*)+
|
||||
-
|
||||
kind: "message-v1"
|
||||
backtrace:
|
||||
- "ConfigureLogTransitions.cmake:[0-9]+ \(find_library\)"
|
||||
- "CMakeLists.txt:[0-9]+ \(include\)"
|
||||
message: |
|
||||
Found -> Found
|
||||
-
|
||||
kind: "message-v1"
|
||||
backtrace:
|
||||
- "ConfigureLogTransitions.cmake:[0-9]+ \(find_library\)"
|
||||
- "CMakeLists.txt:[0-9]+ \(include\)"
|
||||
message: |
|
||||
Found -> NotFound
|
||||
-
|
||||
kind: "find-v1"
|
||||
backtrace:
|
||||
- "ConfigureLogTransitions.cmake:[0-9]+ \(find_library\)"
|
||||
- "CMakeLists.txt:[0-9]+ \(include\)"
|
||||
mode: "library"
|
||||
variable: "PREFIX_IN_PATH"
|
||||
description: "Path to a library."
|
||||
settings:
|
||||
SearchFramework: "(NEVER|FIRST)"
|
||||
SearchAppBundle: "(NEVER|FIRST)"
|
||||
CMAKE_FIND_USE_CMAKE_PATH: true
|
||||
CMAKE_FIND_USE_CMAKE_ENVIRONMENT_PATH: true
|
||||
CMAKE_FIND_USE_SYSTEM_ENVIRONMENT_PATH: true
|
||||
CMAKE_FIND_USE_CMAKE_SYSTEM_PATH: true
|
||||
CMAKE_FIND_USE_INSTALL_PREFIX: true
|
||||
names:
|
||||
- "PrefixInPATH"
|
||||
candidate_directories:(
|
||||
- "[^"]+")+
|
||||
searched_directories:(
|
||||
- "[^"]+")+
|
||||
found: false
|
||||
search_context:(
|
||||
[^
|
||||
]*)+
|
||||
-
|
||||
kind: "message-v1"
|
||||
backtrace:
|
||||
- "ConfigureLogTransitions.cmake:[0-9]+ \(find_library\)"
|
||||
- "CMakeLists.txt:[0-9]+ \(include\)"
|
||||
message: |
|
||||
NotFound -> Found
|
||||
-
|
||||
kind: "find-v1"
|
||||
backtrace:
|
||||
- "ConfigureLogTransitions.cmake:[0-9]+ \(find_library\)"
|
||||
- "CMakeLists.txt:[0-9]+ \(include\)"
|
||||
mode: "library"
|
||||
variable: "PREFIX_IN_PATH"
|
||||
description: "Path to a library."
|
||||
settings:
|
||||
SearchFramework: "(NEVER|FIRST)"
|
||||
SearchAppBundle: "(NEVER|FIRST)"
|
||||
CMAKE_FIND_USE_CMAKE_PATH: true
|
||||
CMAKE_FIND_USE_CMAKE_ENVIRONMENT_PATH: true
|
||||
CMAKE_FIND_USE_SYSTEM_ENVIRONMENT_PATH: true
|
||||
CMAKE_FIND_USE_CMAKE_SYSTEM_PATH: true
|
||||
CMAKE_FIND_USE_INSTALL_PREFIX: true
|
||||
names:
|
||||
- "PrefixInPATH"
|
||||
candidate_directories:
|
||||
- ".*/Tests/RunCMake/find_library/lib/"
|
||||
- ".*/Tests/RunCMake/find_library/"(
|
||||
- "[^"]+")+
|
||||
found: ".*/Tests/RunCMake/find_library/lib/libPrefixInPATH.a"
|
||||
search_context:(
|
||||
[^
|
||||
]*)+
|
||||
...
|
||||
@@ -0,0 +1,22 @@
|
||||
set(CMAKE_PREFIX_PATH "${CMAKE_CURRENT_SOURCE_DIR}")
|
||||
|
||||
message(CONFIGURE_LOG "NotDefined -> NotFound")
|
||||
find_library(NOEXIST_FILE NAMES NoExist)
|
||||
|
||||
message(CONFIGURE_LOG "NotFound -> NotFound")
|
||||
find_library(NOEXIST_FILE NAMES NoExist)
|
||||
|
||||
message(CONFIGURE_LOG "NotDefined -> Found")
|
||||
find_library(PREFIX_IN_PATH NAMES PrefixInPATH)
|
||||
|
||||
message(CONFIGURE_LOG "Found -> Found")
|
||||
find_library(PREFIX_IN_PATH NAMES PrefixInPATH)
|
||||
|
||||
message(CONFIGURE_LOG "Found -> NotFound")
|
||||
unset(PREFIX_IN_PATH CACHE)
|
||||
unset(CMAKE_PREFIX_PATH)
|
||||
find_library(PREFIX_IN_PATH NAMES PrefixInPATH)
|
||||
|
||||
message(CONFIGURE_LOG "NotFound -> Found")
|
||||
set(CMAKE_PREFIX_PATH "${CMAKE_CURRENT_SOURCE_DIR}")
|
||||
find_library(PREFIX_IN_PATH NAMES PrefixInPATH)
|
||||
@@ -1,5 +1,6 @@
|
||||
include(RunCMake)
|
||||
|
||||
run_cmake(ConfigureLogTransitions)
|
||||
run_cmake(Created)
|
||||
run_cmake(FromPrefixPath)
|
||||
run_cmake(FromPATHEnv)
|
||||
|
||||
@@ -1,13 +1,17 @@
|
||||
^
|
||||
---
|
||||
events:
|
||||
events:(
|
||||
-
|
||||
kind: "find-v1"(
|
||||
[^
|
||||
]*)+|
|
||||
+ -
|
||||
kind: "message-v1"
|
||||
backtrace:(
|
||||
- "[^"]+")+
|
||||
message: \|(
|
||||
+ [^
|
||||
]*)*
|
||||
]*)*)*
|
||||
-
|
||||
kind: "find_package-v1"
|
||||
backtrace:(
|
||||
@@ -44,31 +48,31 @@ events:
|
||||
CMAKE_FIND_ROOT_PATH_MODE: "BOTH"
|
||||
candidates:
|
||||
-
|
||||
path: ".*/Tests/RunCMake/find_package/ConfigureLog-build/CMakeFiles/pkgRedirects/ViaConfigConfig.cmake"
|
||||
path: "[^"]*/Tests/RunCMake/find_package/ConfigureLog-build/CMakeFiles/pkgRedirects/ViaConfigConfig.cmake"
|
||||
mode: "config"
|
||||
reason: "no_exist"
|
||||
-
|
||||
path: ".*/Tests/RunCMake/find_package/ConfigureLog-build/CMakeFiles/pkgRedirects/viaconfig-config.cmake"
|
||||
path: "[^"]*/Tests/RunCMake/find_package/ConfigureLog-build/CMakeFiles/pkgRedirects/viaconfig-config.cmake"
|
||||
mode: "config"
|
||||
reason: "no_exist"
|
||||
-
|
||||
path: ".*/Tests/RunCMake/find_package/ConfigureLog/ViaConfigConfig.cmake"
|
||||
path: "[^"]*/Tests/RunCMake/find_package/ConfigureLog/ViaConfigConfig.cmake"
|
||||
mode: "config"
|
||||
reason: "no_exist"
|
||||
-
|
||||
path: ".*/Tests/RunCMake/find_package/ConfigureLog/viaconfig-config.cmake"
|
||||
path: "[^"]*/Tests/RunCMake/find_package/ConfigureLog/viaconfig-config.cmake"
|
||||
mode: "config"
|
||||
reason: "no_exist"
|
||||
-
|
||||
path: ".*/Tests/RunCMake/find_package/ConfigureLog/cmake/ViaConfigConfig.cmake"
|
||||
path: "[^"]*/Tests/RunCMake/find_package/ConfigureLog/cmake/ViaConfigConfig.cmake"
|
||||
mode: "config"
|
||||
reason: "no_exist"
|
||||
-
|
||||
path: ".*/Tests/RunCMake/find_package/ConfigureLog/cmake/viaconfig-config.cmake"
|
||||
path: "[^"]*/Tests/RunCMake/find_package/ConfigureLog/cmake/viaconfig-config.cmake"
|
||||
mode: "config"
|
||||
reason: "no_exist"
|
||||
found:
|
||||
path: ".*/Tests/RunCMake/find_package/ConfigureLog/lib/cmake/ViaConfig/ViaConfigConfig.cmake"
|
||||
path: "[^"]*/Tests/RunCMake/find_package/ConfigureLog/lib/cmake/ViaConfig/ViaConfigConfig.cmake"
|
||||
mode: "config"
|
||||
version: "1\.0"
|
||||
search_context:(
|
||||
@@ -100,7 +104,7 @@ events:
|
||||
CMAKE_FIND_USE_SYSTEM_PACKAGE_REGISTRY: true
|
||||
CMAKE_FIND_ROOT_PATH_MODE: "BOTH"
|
||||
found:
|
||||
path: ".*/Tests/RunCMake/find_package/ConfigureLog/cmake/FindViaModule.cmake"
|
||||
path: "[^"]*/Tests/RunCMake/find_package/ConfigureLog/cmake/FindViaModule.cmake"
|
||||
mode: "module"
|
||||
version: "1.0"
|
||||
search_context:(
|
||||
@@ -142,31 +146,31 @@ events:
|
||||
CMAKE_FIND_ROOT_PATH_MODE: "BOTH"
|
||||
candidates:
|
||||
-
|
||||
path: ".*/CMakeFiles/pkgRedirects/InnerConfig.cmake"
|
||||
path: "[^"]*/CMakeFiles/pkgRedirects/InnerConfig.cmake"
|
||||
mode: "config"
|
||||
reason: "no_exist"
|
||||
-
|
||||
path: ".*/CMakeFiles/pkgRedirects/inner-config.cmake"
|
||||
path: "[^"]*/CMakeFiles/pkgRedirects/inner-config.cmake"
|
||||
mode: "config"
|
||||
reason: "no_exist"
|
||||
-
|
||||
path: ".*/Tests/RunCMake/find_package/ConfigureLog/InnerConfig.cmake"
|
||||
path: "[^"]*/Tests/RunCMake/find_package/ConfigureLog/InnerConfig.cmake"
|
||||
mode: "config"
|
||||
reason: "no_exist"
|
||||
-
|
||||
path: ".*/Tests/RunCMake/find_package/ConfigureLog/inner-config.cmake"
|
||||
path: "[^"]*/Tests/RunCMake/find_package/ConfigureLog/inner-config.cmake"
|
||||
mode: "config"
|
||||
reason: "no_exist"
|
||||
-
|
||||
path: ".*/Tests/RunCMake/find_package/ConfigureLog/cmake/InnerConfig.cmake"
|
||||
path: "[^"]*/Tests/RunCMake/find_package/ConfigureLog/cmake/InnerConfig.cmake"
|
||||
mode: "config"
|
||||
reason: "no_exist"
|
||||
-
|
||||
path: ".*/Tests/RunCMake/find_package/ConfigureLog/cmake/inner-config.cmake"
|
||||
path: "[^"]*/Tests/RunCMake/find_package/ConfigureLog/cmake/inner-config.cmake"
|
||||
mode: "config"
|
||||
reason: "no_exist"
|
||||
found:
|
||||
path: ".*/Tests/RunCMake/find_package/ConfigureLog/lib/cmake/Inner/InnerConfig.cmake"
|
||||
path: "[^"]*/Tests/RunCMake/find_package/ConfigureLog/lib/cmake/Inner/InnerConfig.cmake"
|
||||
mode: "config"
|
||||
version: "1.1"
|
||||
search_context:(
|
||||
@@ -198,7 +202,7 @@ events:
|
||||
CMAKE_FIND_USE_SYSTEM_PACKAGE_REGISTRY: true
|
||||
CMAKE_FIND_ROOT_PATH_MODE: "BOTH"
|
||||
found:
|
||||
path: ".*/Tests/RunCMake/find_package/ConfigureLog/cmake/FindWithInner.cmake"
|
||||
path: "[^"]*/Tests/RunCMake/find_package/ConfigureLog/cmake/FindWithInner.cmake"
|
||||
mode: "module"
|
||||
version: "1.1"
|
||||
search_context:(
|
||||
@@ -242,39 +246,39 @@ events:
|
||||
CMAKE_FIND_ROOT_PATH_MODE: "BOTH"
|
||||
candidates:
|
||||
-
|
||||
path: ".*/CMakeFiles/pkgRedirects/VersionCheckConfig.cmake"
|
||||
path: "[^"]*/CMakeFiles/pkgRedirects/VersionCheckConfig.cmake"
|
||||
mode: "config"
|
||||
reason: "no_exist"
|
||||
-
|
||||
path: ".*/CMakeFiles/pkgRedirects/versioncheck-config.cmake"
|
||||
path: "[^"]*/CMakeFiles/pkgRedirects/versioncheck-config.cmake"
|
||||
mode: "config"
|
||||
reason: "no_exist"
|
||||
-
|
||||
path: ".*/Tests/RunCMake/find_package/ConfigureLog/VersionCheckConfig.cmake"
|
||||
path: "[^"]*/Tests/RunCMake/find_package/ConfigureLog/VersionCheckConfig.cmake"
|
||||
mode: "config"
|
||||
reason: "no_exist"
|
||||
-
|
||||
path: ".*/Tests/RunCMake/find_package/ConfigureLog/versioncheck-config.cmake"
|
||||
path: "[^"]*/Tests/RunCMake/find_package/ConfigureLog/versioncheck-config.cmake"
|
||||
mode: "config"
|
||||
reason: "no_exist"
|
||||
-
|
||||
path: ".*/Tests/RunCMake/find_package/ConfigureLog/cmake/VersionCheckConfig.cmake"
|
||||
path: "[^"]*/Tests/RunCMake/find_package/ConfigureLog/cmake/VersionCheckConfig.cmake"
|
||||
mode: "config"
|
||||
reason: "no_exist"
|
||||
-
|
||||
path: ".*/Tests/RunCMake/find_package/ConfigureLog/cmake/versioncheck-config.cmake"
|
||||
path: "[^"]*/Tests/RunCMake/find_package/ConfigureLog/cmake/versioncheck-config.cmake"
|
||||
mode: "config"
|
||||
reason: "no_exist"
|
||||
-
|
||||
path: ".*/Tests/RunCMake/find_package/ConfigureLog/lib/cmake/VersionCheck-1.5/VersionCheckConfig.cmake"
|
||||
path: "[^"]*/Tests/RunCMake/find_package/ConfigureLog/lib/cmake/VersionCheck-1.5/VersionCheckConfig.cmake"
|
||||
mode: "config"
|
||||
reason: "insufficient_version"
|
||||
-
|
||||
path: ".*/Tests/RunCMake/find_package/ConfigureLog/lib/cmake/VersionCheck-1.5/versioncheck-config.cmake"
|
||||
path: "[^"]*/Tests/RunCMake/find_package/ConfigureLog/lib/cmake/VersionCheck-1.5/versioncheck-config.cmake"
|
||||
mode: "config"
|
||||
reason: "no_exist"
|
||||
found:
|
||||
path: ".*/Tests/RunCMake/find_package/ConfigureLog/lib/cmake/VersionCheck-2.5/VersionCheckConfig.cmake"
|
||||
path: "[^"]*/Tests/RunCMake/find_package/ConfigureLog/lib/cmake/VersionCheck-2.5/VersionCheckConfig.cmake"
|
||||
mode: "config"
|
||||
version: "2.5"
|
||||
search_context:(
|
||||
|
||||
@@ -1,13 +1,17 @@
|
||||
^
|
||||
---
|
||||
events:
|
||||
events:(
|
||||
-
|
||||
kind: "find-v1"(
|
||||
[^
|
||||
]*)+|
|
||||
+ -
|
||||
kind: "message-v1"
|
||||
backtrace:(
|
||||
- "[^"]+")+
|
||||
message: \|(
|
||||
+ [^
|
||||
]*)*
|
||||
]*)*)*
|
||||
-
|
||||
kind: "find_package-v1"
|
||||
backtrace:(
|
||||
@@ -37,7 +41,7 @@ events:
|
||||
CMAKE_FIND_ROOT_PATH_MODE: "BOTH"
|
||||
candidates:
|
||||
-
|
||||
path: ".*/Tests/RunCMake/find_package/ConfigureLog/cmake/FindParameterCheck.cmake"
|
||||
path: "[^"]*/Tests/RunCMake/find_package/ConfigureLog/cmake/FindParameterCheck.cmake"
|
||||
mode: "module"
|
||||
reason: "not_found"
|
||||
message: "Not an EXACT version match"
|
||||
@@ -75,7 +79,7 @@ events:
|
||||
CMAKE_FIND_USE_SYSTEM_PACKAGE_REGISTRY: true
|
||||
CMAKE_FIND_ROOT_PATH_MODE: "BOTH"
|
||||
found:
|
||||
path: ".*/Tests/RunCMake/find_package/ConfigureLog/cmake/FindParameterCheck.cmake"
|
||||
path: "[^"]*/Tests/RunCMake/find_package/ConfigureLog/cmake/FindParameterCheck.cmake"
|
||||
mode: "module"
|
||||
version: "1.2"
|
||||
search_context:(
|
||||
@@ -109,7 +113,7 @@ events:
|
||||
CMAKE_FIND_USE_SYSTEM_PACKAGE_REGISTRY: true
|
||||
CMAKE_FIND_ROOT_PATH_MODE: "BOTH"
|
||||
found:
|
||||
path: ".*/Tests/RunCMake/find_package/ConfigureLog/cmake/FindParameterCheck.cmake"
|
||||
path: "[^"]*/Tests/RunCMake/find_package/ConfigureLog/cmake/FindParameterCheck.cmake"
|
||||
mode: "module"
|
||||
version: "1.2"
|
||||
search_context:(
|
||||
@@ -141,7 +145,7 @@ events:
|
||||
CMAKE_FIND_USE_SYSTEM_PACKAGE_REGISTRY: true
|
||||
CMAKE_FIND_ROOT_PATH_MODE: "BOTH"
|
||||
found:
|
||||
path: ".*/Tests/RunCMake/find_package/ConfigureLog/cmake/FindParameterCheck.cmake"
|
||||
path: "[^"]*/Tests/RunCMake/find_package/ConfigureLog/cmake/FindParameterCheck.cmake"
|
||||
mode: "module"
|
||||
version: "1.2"
|
||||
search_context:(
|
||||
@@ -173,7 +177,7 @@ events:
|
||||
CMAKE_FIND_USE_SYSTEM_PACKAGE_REGISTRY: true
|
||||
CMAKE_FIND_ROOT_PATH_MODE: "BOTH"
|
||||
found:
|
||||
path: ".*/Tests/RunCMake/find_package/ConfigureLog/cmake/FindParameterCheck.cmake"
|
||||
path: "[^"]*/Tests/RunCMake/find_package/ConfigureLog/cmake/FindParameterCheck.cmake"
|
||||
mode: "module"
|
||||
version: "1.2"
|
||||
search_context:(
|
||||
@@ -214,7 +218,7 @@ events:
|
||||
CMAKE_FIND_USE_SYSTEM_PACKAGE_REGISTRY: true
|
||||
CMAKE_FIND_ROOT_PATH_MODE: "BOTH"
|
||||
found:
|
||||
path: ".*/Tests/RunCMake/find_package/ConfigureLog/cmake/FindParameterCheck.cmake"
|
||||
path: "[^"]*/Tests/RunCMake/find_package/ConfigureLog/cmake/FindParameterCheck.cmake"
|
||||
mode: "module"
|
||||
version: "1.2"
|
||||
search_context:(
|
||||
@@ -247,7 +251,7 @@ events:
|
||||
CMAKE_FIND_USE_SYSTEM_PACKAGE_REGISTRY: true
|
||||
CMAKE_FIND_ROOT_PATH_MODE: "BOTH"
|
||||
found:
|
||||
path: ".*/Tests/RunCMake/find_package/ConfigureLog/cmake/FindParameterCheck.cmake"
|
||||
path: "[^"]*/Tests/RunCMake/find_package/ConfigureLog/cmake/FindParameterCheck.cmake"
|
||||
mode: "module"
|
||||
version: "1.2"
|
||||
search_context:(
|
||||
@@ -279,7 +283,7 @@ events:
|
||||
CMAKE_FIND_USE_SYSTEM_PACKAGE_REGISTRY: true
|
||||
CMAKE_FIND_ROOT_PATH_MODE: "BOTH"
|
||||
found:
|
||||
path: ".*/Tests/RunCMake/find_package/ConfigureLog/cmake/FindParameterCheck.cmake"
|
||||
path: "[^"]*/Tests/RunCMake/find_package/ConfigureLog/cmake/FindParameterCheck.cmake"
|
||||
mode: "module"
|
||||
version: "1.2"
|
||||
search_context:(
|
||||
@@ -311,7 +315,7 @@ events:
|
||||
CMAKE_FIND_USE_SYSTEM_PACKAGE_REGISTRY: true
|
||||
CMAKE_FIND_ROOT_PATH_MODE: "BOTH"
|
||||
found:
|
||||
path: ".*/Tests/RunCMake/find_package/ConfigureLog/cmake/FindParameterCheck.cmake"
|
||||
path: "[^"]*/Tests/RunCMake/find_package/ConfigureLog/cmake/FindParameterCheck.cmake"
|
||||
mode: "module"
|
||||
version: "1.2"
|
||||
search_context:(
|
||||
@@ -343,7 +347,7 @@ events:
|
||||
CMAKE_FIND_USE_SYSTEM_PACKAGE_REGISTRY: true
|
||||
CMAKE_FIND_ROOT_PATH_MODE: "BOTH"
|
||||
found:
|
||||
path: ".*/Tests/RunCMake/find_package/ConfigureLog/cmake/FindParameterCheck.cmake"
|
||||
path: "[^"]*/Tests/RunCMake/find_package/ConfigureLog/cmake/FindParameterCheck.cmake"
|
||||
mode: "module"
|
||||
version: "1.2"
|
||||
search_context:(
|
||||
|
||||
@@ -1,13 +1,17 @@
|
||||
^
|
||||
---
|
||||
events:
|
||||
events:(
|
||||
-
|
||||
kind: "find-v1"(
|
||||
[^
|
||||
]*)+|
|
||||
+ -
|
||||
kind: "message-v1"
|
||||
backtrace:(
|
||||
- "[^"]+")+
|
||||
message: \|(
|
||||
+ [^
|
||||
]*)*
|
||||
]*)*)*
|
||||
-
|
||||
kind: "find_package-v1"
|
||||
backtrace:(
|
||||
@@ -29,7 +33,7 @@ events:
|
||||
policy_scope: true
|
||||
bypass_provider: false
|
||||
hints:
|
||||
- ".*/Tests/RunCMake/find_package"
|
||||
- "[^"]*/Tests/RunCMake/find_package"
|
||||
names:
|
||||
- "ParameterCheckConfig"
|
||||
path_suffixes:
|
||||
@@ -46,31 +50,31 @@ events:
|
||||
CMAKE_FIND_ROOT_PATH_MODE: "BOTH"
|
||||
candidates:
|
||||
-
|
||||
path: ".*/CMakeFiles/pkgRedirects/ParameterCheckConfigConfig.cmake"
|
||||
path: "[^"]*/CMakeFiles/pkgRedirects/ParameterCheckConfigConfig.cmake"
|
||||
mode: "config"
|
||||
reason: "no_exist"
|
||||
-
|
||||
path: ".*/CMakeFiles/pkgRedirects/parametercheckconfig-config.cmake"
|
||||
path: "[^"]*/CMakeFiles/pkgRedirects/parametercheckconfig-config.cmake"
|
||||
mode: "config"
|
||||
reason: "no_exist"
|
||||
-
|
||||
path: ".*/Tests/RunCMake/find_package/ConfigureLog/ParameterCheckConfigConfig.cmake"
|
||||
path: "[^"]*/Tests/RunCMake/find_package/ConfigureLog/ParameterCheckConfigConfig.cmake"
|
||||
mode: "config"
|
||||
reason: "no_exist"
|
||||
-
|
||||
path: ".*/Tests/RunCMake/find_package/ConfigureLog/parametercheckconfig-config.cmake"
|
||||
path: "[^"]*/Tests/RunCMake/find_package/ConfigureLog/parametercheckconfig-config.cmake"
|
||||
mode: "config"
|
||||
reason: "no_exist"
|
||||
-
|
||||
path: ".*/Tests/RunCMake/find_package/ConfigureLog/cmake/ParameterCheckConfigConfig.cmake"
|
||||
path: "[^"]*/Tests/RunCMake/find_package/ConfigureLog/cmake/ParameterCheckConfigConfig.cmake"
|
||||
mode: "config"
|
||||
reason: "no_exist"
|
||||
-
|
||||
path: ".*/Tests/RunCMake/find_package/ConfigureLog/cmake/parametercheckconfig-config.cmake"
|
||||
path: "[^"]*/Tests/RunCMake/find_package/ConfigureLog/cmake/parametercheckconfig-config.cmake"
|
||||
mode: "config"
|
||||
reason: "no_exist"
|
||||
found:
|
||||
path: ".*/Tests/RunCMake/find_package/ConfigureLog/lib/cmake/ParameterCheckConfig/ParameterCheckConfigConfig.cmake"
|
||||
path: "[^"]*/Tests/RunCMake/find_package/ConfigureLog/lib/cmake/ParameterCheckConfig/ParameterCheckConfigConfig.cmake"
|
||||
mode: "config"
|
||||
version: "1.6"
|
||||
search_context:(
|
||||
@@ -114,79 +118,79 @@ events:
|
||||
CMAKE_FIND_ROOT_PATH_MODE: "BOTH"
|
||||
candidates:
|
||||
-
|
||||
path: ".*/CMakeFiles/pkgRedirects/ParameterCheckConfigConfig.cmake"
|
||||
path: "[^"]*/CMakeFiles/pkgRedirects/ParameterCheckConfigConfig.cmake"
|
||||
mode: "config"
|
||||
reason: "no_exist"
|
||||
-
|
||||
path: ".*/CMakeFiles/pkgRedirects/parametercheckconfig-config.cmake"
|
||||
path: "[^"]*/CMakeFiles/pkgRedirects/parametercheckconfig-config.cmake"
|
||||
mode: "config"
|
||||
reason: "no_exist"
|
||||
-
|
||||
path: ".*/CMakeFiles/pkgRedirects/suffix1/ParameterCheckConfigConfig.cmake"
|
||||
path: "[^"]*/CMakeFiles/pkgRedirects/suffix1/ParameterCheckConfigConfig.cmake"
|
||||
mode: "config"
|
||||
reason: "no_exist"
|
||||
-
|
||||
path: ".*/CMakeFiles/pkgRedirects/suffix1/parametercheckconfig-config.cmake"
|
||||
path: "[^"]*/CMakeFiles/pkgRedirects/suffix1/parametercheckconfig-config.cmake"
|
||||
mode: "config"
|
||||
reason: "no_exist"
|
||||
-
|
||||
path: ".*/CMakeFiles/pkgRedirects/suffix2/ParameterCheckConfigConfig.cmake"
|
||||
path: "[^"]*/CMakeFiles/pkgRedirects/suffix2/ParameterCheckConfigConfig.cmake"
|
||||
mode: "config"
|
||||
reason: "no_exist"
|
||||
-
|
||||
path: ".*/CMakeFiles/pkgRedirects/suffix2/parametercheckconfig-config.cmake"
|
||||
path: "[^"]*/CMakeFiles/pkgRedirects/suffix2/parametercheckconfig-config.cmake"
|
||||
mode: "config"
|
||||
reason: "no_exist"
|
||||
-
|
||||
path: ".*/Tests/RunCMake/find_package/ConfigureLog/ParameterCheckConfigConfig.cmake"
|
||||
path: "[^"]*/Tests/RunCMake/find_package/ConfigureLog/ParameterCheckConfigConfig.cmake"
|
||||
mode: "config"
|
||||
reason: "no_exist"
|
||||
-
|
||||
path: ".*/Tests/RunCMake/find_package/ConfigureLog/parametercheckconfig-config.cmake"
|
||||
path: "[^"]*/Tests/RunCMake/find_package/ConfigureLog/parametercheckconfig-config.cmake"
|
||||
mode: "config"
|
||||
reason: "no_exist"
|
||||
-
|
||||
path: ".*/Tests/RunCMake/find_package/ConfigureLog/suffix1/ParameterCheckConfigConfig.cmake"
|
||||
path: "[^"]*/Tests/RunCMake/find_package/ConfigureLog/suffix1/ParameterCheckConfigConfig.cmake"
|
||||
mode: "config"
|
||||
reason: "no_exist"
|
||||
-
|
||||
path: ".*/Tests/RunCMake/find_package/ConfigureLog/suffix1/parametercheckconfig-config.cmake"
|
||||
path: "[^"]*/Tests/RunCMake/find_package/ConfigureLog/suffix1/parametercheckconfig-config.cmake"
|
||||
mode: "config"
|
||||
reason: "no_exist"
|
||||
-
|
||||
path: ".*/Tests/RunCMake/find_package/ConfigureLog/suffix2/ParameterCheckConfigConfig.cmake"
|
||||
path: "[^"]*/Tests/RunCMake/find_package/ConfigureLog/suffix2/ParameterCheckConfigConfig.cmake"
|
||||
mode: "config"
|
||||
reason: "no_exist"
|
||||
-
|
||||
path: ".*/Tests/RunCMake/find_package/ConfigureLog/suffix2/parametercheckconfig-config.cmake"
|
||||
path: "[^"]*/Tests/RunCMake/find_package/ConfigureLog/suffix2/parametercheckconfig-config.cmake"
|
||||
mode: "config"
|
||||
reason: "no_exist"
|
||||
-
|
||||
path: ".*/Tests/RunCMake/find_package/ConfigureLog/cmake/ParameterCheckConfigConfig.cmake"
|
||||
path: "[^"]*/Tests/RunCMake/find_package/ConfigureLog/cmake/ParameterCheckConfigConfig.cmake"
|
||||
mode: "config"
|
||||
reason: "no_exist"
|
||||
-
|
||||
path: ".*/Tests/RunCMake/find_package/ConfigureLog/cmake/parametercheckconfig-config.cmake"
|
||||
path: "[^"]*/Tests/RunCMake/find_package/ConfigureLog/cmake/parametercheckconfig-config.cmake"
|
||||
mode: "config"
|
||||
reason: "no_exist"
|
||||
-
|
||||
path: ".*/Tests/RunCMake/find_package/ConfigureLog/cmake/suffix1/ParameterCheckConfigConfig.cmake"
|
||||
path: "[^"]*/Tests/RunCMake/find_package/ConfigureLog/cmake/suffix1/ParameterCheckConfigConfig.cmake"
|
||||
mode: "config"
|
||||
reason: "no_exist"
|
||||
-
|
||||
path: ".*/Tests/RunCMake/find_package/ConfigureLog/cmake/suffix1/parametercheckconfig-config.cmake"
|
||||
path: "[^"]*/Tests/RunCMake/find_package/ConfigureLog/cmake/suffix1/parametercheckconfig-config.cmake"
|
||||
mode: "config"
|
||||
reason: "no_exist"
|
||||
-
|
||||
path: ".*/Tests/RunCMake/find_package/ConfigureLog/cmake/suffix2/ParameterCheckConfigConfig.cmake"
|
||||
path: "[^"]*/Tests/RunCMake/find_package/ConfigureLog/cmake/suffix2/ParameterCheckConfigConfig.cmake"
|
||||
mode: "config"
|
||||
reason: "no_exist"
|
||||
-
|
||||
path: ".*/Tests/RunCMake/find_package/ConfigureLog/cmake/suffix2/parametercheckconfig-config.cmake"
|
||||
path: "[^"]*/Tests/RunCMake/find_package/ConfigureLog/cmake/suffix2/parametercheckconfig-config.cmake"
|
||||
mode: "config"
|
||||
reason: "no_exist"
|
||||
found:
|
||||
path: ".*/Tests/RunCMake/find_package/ConfigureLog/lib/cmake/ParameterCheckConfig/ParameterCheckConfigConfig.cmake"
|
||||
path: "[^"]*/Tests/RunCMake/find_package/ConfigureLog/lib/cmake/ParameterCheckConfig/ParameterCheckConfigConfig.cmake"
|
||||
mode: "config"
|
||||
version: "1.6"
|
||||
search_context:(
|
||||
@@ -228,11 +232,11 @@ events:
|
||||
CMAKE_FIND_ROOT_PATH_MODE: "BOTH"
|
||||
candidates:
|
||||
-
|
||||
path: ".*/CMakeFiles/pkgRedirects/ParameterCheckConfigConfig.cmake"
|
||||
path: "[^"]*/CMakeFiles/pkgRedirects/ParameterCheckConfigConfig.cmake"
|
||||
mode: "config"
|
||||
reason: "no_exist"
|
||||
-
|
||||
path: ".*/CMakeFiles/pkgRedirects/parametercheckconfig-config.cmake"
|
||||
path: "[^"]*/CMakeFiles/pkgRedirects/parametercheckconfig-config.cmake"
|
||||
mode: "config"
|
||||
reason: "no_exist"
|
||||
found: null
|
||||
@@ -275,31 +279,31 @@ events:
|
||||
CMAKE_FIND_ROOT_PATH_MODE: "BOTH"
|
||||
candidates:
|
||||
-
|
||||
path: ".*/CMakeFiles/pkgRedirects/ParameterCheckConfigConfig.cmake"
|
||||
path: "[^"]*/CMakeFiles/pkgRedirects/ParameterCheckConfigConfig.cmake"
|
||||
mode: "config"
|
||||
reason: "no_exist"
|
||||
-
|
||||
path: ".*/CMakeFiles/pkgRedirects/parametercheckconfig-config.cmake"
|
||||
path: "[^"]*/CMakeFiles/pkgRedirects/parametercheckconfig-config.cmake"
|
||||
mode: "config"
|
||||
reason: "no_exist"
|
||||
-
|
||||
path: ".*/Tests/RunCMake/find_package/ConfigureLog/ParameterCheckConfigConfig.cmake"
|
||||
path: "[^"]*/Tests/RunCMake/find_package/ConfigureLog/ParameterCheckConfigConfig.cmake"
|
||||
mode: "config"
|
||||
reason: "no_exist"
|
||||
-
|
||||
path: ".*/Tests/RunCMake/find_package/ConfigureLog/parametercheckconfig-config.cmake"
|
||||
path: "[^"]*/Tests/RunCMake/find_package/ConfigureLog/parametercheckconfig-config.cmake"
|
||||
mode: "config"
|
||||
reason: "no_exist"
|
||||
-
|
||||
path: ".*/Tests/RunCMake/find_package/ConfigureLog/cmake/ParameterCheckConfigConfig.cmake"
|
||||
path: "[^"]*/Tests/RunCMake/find_package/ConfigureLog/cmake/ParameterCheckConfigConfig.cmake"
|
||||
mode: "config"
|
||||
reason: "no_exist"
|
||||
-
|
||||
path: ".*/Tests/RunCMake/find_package/ConfigureLog/cmake/parametercheckconfig-config.cmake"
|
||||
path: "[^"]*/Tests/RunCMake/find_package/ConfigureLog/cmake/parametercheckconfig-config.cmake"
|
||||
mode: "config"
|
||||
reason: "no_exist"
|
||||
found:
|
||||
path: ".*/Tests/RunCMake/find_package/ConfigureLog/lib/cmake/ParameterCheckConfig/ParameterCheckConfigConfig.cmake"
|
||||
path: "[^"]*/Tests/RunCMake/find_package/ConfigureLog/lib/cmake/ParameterCheckConfig/ParameterCheckConfigConfig.cmake"
|
||||
mode: "config"
|
||||
version: "1.6"
|
||||
search_context:(
|
||||
@@ -341,31 +345,31 @@ events:
|
||||
CMAKE_FIND_ROOT_PATH_MODE: "ONLY"
|
||||
candidates:
|
||||
-
|
||||
path: ".*/CMakeFiles/pkgRedirects/ParameterCheckConfigConfig.cmake"
|
||||
path: "[^"]*/CMakeFiles/pkgRedirects/ParameterCheckConfigConfig.cmake"
|
||||
mode: "config"
|
||||
reason: "no_exist"
|
||||
-
|
||||
path: ".*/CMakeFiles/pkgRedirects/parametercheckconfig-config.cmake"
|
||||
path: "[^"]*/CMakeFiles/pkgRedirects/parametercheckconfig-config.cmake"
|
||||
mode: "config"
|
||||
reason: "no_exist"
|
||||
-
|
||||
path: ".*/Tests/RunCMake/find_package/ConfigureLog/ParameterCheckConfigConfig.cmake"
|
||||
path: "[^"]*/Tests/RunCMake/find_package/ConfigureLog/ParameterCheckConfigConfig.cmake"
|
||||
mode: "config"
|
||||
reason: "no_exist"
|
||||
-
|
||||
path: ".*/Tests/RunCMake/find_package/ConfigureLog/parametercheckconfig-config.cmake"
|
||||
path: "[^"]*/Tests/RunCMake/find_package/ConfigureLog/parametercheckconfig-config.cmake"
|
||||
mode: "config"
|
||||
reason: "no_exist"
|
||||
-
|
||||
path: ".*/Tests/RunCMake/find_package/ConfigureLog/cmake/ParameterCheckConfigConfig.cmake"
|
||||
path: "[^"]*/Tests/RunCMake/find_package/ConfigureLog/cmake/ParameterCheckConfigConfig.cmake"
|
||||
mode: "config"
|
||||
reason: "no_exist"
|
||||
-
|
||||
path: ".*/Tests/RunCMake/find_package/ConfigureLog/cmake/parametercheckconfig-config.cmake"
|
||||
path: "[^"]*/Tests/RunCMake/find_package/ConfigureLog/cmake/parametercheckconfig-config.cmake"
|
||||
mode: "config"
|
||||
reason: "no_exist"
|
||||
found:
|
||||
path: ".*/Tests/RunCMake/find_package/ConfigureLog/lib/cmake/ParameterCheckConfig/ParameterCheckConfigConfig.cmake"
|
||||
path: "[^"]*/Tests/RunCMake/find_package/ConfigureLog/lib/cmake/ParameterCheckConfig/ParameterCheckConfigConfig.cmake"
|
||||
mode: "config"
|
||||
version: "1.6"
|
||||
search_context:(
|
||||
@@ -407,31 +411,31 @@ events:
|
||||
CMAKE_FIND_ROOT_PATH_MODE: "NEVER"
|
||||
candidates:
|
||||
-
|
||||
path: ".*/CMakeFiles/pkgRedirects/ParameterCheckConfigConfig.cmake"
|
||||
path: "[^"]*/CMakeFiles/pkgRedirects/ParameterCheckConfigConfig.cmake"
|
||||
mode: "config"
|
||||
reason: "no_exist"
|
||||
-
|
||||
path: ".*/CMakeFiles/pkgRedirects/parametercheckconfig-config.cmake"
|
||||
path: "[^"]*/CMakeFiles/pkgRedirects/parametercheckconfig-config.cmake"
|
||||
mode: "config"
|
||||
reason: "no_exist"
|
||||
-
|
||||
path: ".*/Tests/RunCMake/find_package/ConfigureLog/ParameterCheckConfigConfig.cmake"
|
||||
path: "[^"]*/Tests/RunCMake/find_package/ConfigureLog/ParameterCheckConfigConfig.cmake"
|
||||
mode: "config"
|
||||
reason: "no_exist"
|
||||
-
|
||||
path: ".*/Tests/RunCMake/find_package/ConfigureLog/parametercheckconfig-config.cmake"
|
||||
path: "[^"]*/Tests/RunCMake/find_package/ConfigureLog/parametercheckconfig-config.cmake"
|
||||
mode: "config"
|
||||
reason: "no_exist"
|
||||
-
|
||||
path: ".*/Tests/RunCMake/find_package/ConfigureLog/cmake/ParameterCheckConfigConfig.cmake"
|
||||
path: "[^"]*/Tests/RunCMake/find_package/ConfigureLog/cmake/ParameterCheckConfigConfig.cmake"
|
||||
mode: "config"
|
||||
reason: "no_exist"
|
||||
-
|
||||
path: ".*/Tests/RunCMake/find_package/ConfigureLog/cmake/parametercheckconfig-config.cmake"
|
||||
path: "[^"]*/Tests/RunCMake/find_package/ConfigureLog/cmake/parametercheckconfig-config.cmake"
|
||||
mode: "config"
|
||||
reason: "no_exist"
|
||||
found:
|
||||
path: ".*/Tests/RunCMake/find_package/ConfigureLog/lib/cmake/ParameterCheckConfig/ParameterCheckConfigConfig.cmake"
|
||||
path: "[^"]*/Tests/RunCMake/find_package/ConfigureLog/lib/cmake/ParameterCheckConfig/ParameterCheckConfigConfig.cmake"
|
||||
mode: "config"
|
||||
version: "1.6"
|
||||
search_context:(
|
||||
@@ -480,63 +484,63 @@ events:
|
||||
CMAKE_FIND_ROOT_PATH_MODE: "BOTH"
|
||||
candidates:
|
||||
-
|
||||
path: ".*/CMakeFiles/pkgRedirects/BogusParameterCheckConfig.cmake"
|
||||
path: "[^"]*/CMakeFiles/pkgRedirects/BogusParameterCheckConfig.cmake"
|
||||
mode: "config"
|
||||
reason: "no_exist"
|
||||
-
|
||||
path: ".*/CMakeFiles/pkgRedirects/bogusparametercheck-config.cmake"
|
||||
path: "[^"]*/CMakeFiles/pkgRedirects/bogusparametercheck-config.cmake"
|
||||
mode: "config"
|
||||
reason: "no_exist"
|
||||
-
|
||||
path: ".*/CMakeFiles/pkgRedirects/ParameterCheckConfigConfig.cmake"
|
||||
path: "[^"]*/CMakeFiles/pkgRedirects/ParameterCheckConfigConfig.cmake"
|
||||
mode: "config"
|
||||
reason: "no_exist"
|
||||
-
|
||||
path: ".*/CMakeFiles/pkgRedirects/parametercheckconfig-config.cmake"
|
||||
path: "[^"]*/CMakeFiles/pkgRedirects/parametercheckconfig-config.cmake"
|
||||
mode: "config"
|
||||
reason: "no_exist"
|
||||
-
|
||||
path: ".*/Tests/RunCMake/find_package/ConfigureLog/BogusParameterCheckConfig.cmake"
|
||||
path: "[^"]*/Tests/RunCMake/find_package/ConfigureLog/BogusParameterCheckConfig.cmake"
|
||||
mode: "config"
|
||||
reason: "no_exist"
|
||||
-
|
||||
path: ".*/Tests/RunCMake/find_package/ConfigureLog/bogusparametercheck-config.cmake"
|
||||
path: "[^"]*/Tests/RunCMake/find_package/ConfigureLog/bogusparametercheck-config.cmake"
|
||||
mode: "config"
|
||||
reason: "no_exist"
|
||||
-
|
||||
path: ".*/Tests/RunCMake/find_package/ConfigureLog/ParameterCheckConfigConfig.cmake"
|
||||
path: "[^"]*/Tests/RunCMake/find_package/ConfigureLog/ParameterCheckConfigConfig.cmake"
|
||||
mode: "config"
|
||||
reason: "no_exist"
|
||||
-
|
||||
path: ".*/Tests/RunCMake/find_package/ConfigureLog/parametercheckconfig-config.cmake"
|
||||
path: "[^"]*/Tests/RunCMake/find_package/ConfigureLog/parametercheckconfig-config.cmake"
|
||||
mode: "config"
|
||||
reason: "no_exist"
|
||||
-
|
||||
path: ".*/Tests/RunCMake/find_package/ConfigureLog/cmake/BogusParameterCheckConfig.cmake"
|
||||
path: "[^"]*/Tests/RunCMake/find_package/ConfigureLog/cmake/BogusParameterCheckConfig.cmake"
|
||||
mode: "config"
|
||||
reason: "no_exist"
|
||||
-
|
||||
path: ".*/Tests/RunCMake/find_package/ConfigureLog/cmake/bogusparametercheck-config.cmake"
|
||||
path: "[^"]*/Tests/RunCMake/find_package/ConfigureLog/cmake/bogusparametercheck-config.cmake"
|
||||
mode: "config"
|
||||
reason: "no_exist"
|
||||
-
|
||||
path: ".*/Tests/RunCMake/find_package/ConfigureLog/cmake/ParameterCheckConfigConfig.cmake"
|
||||
path: "[^"]*/Tests/RunCMake/find_package/ConfigureLog/cmake/ParameterCheckConfigConfig.cmake"
|
||||
mode: "config"
|
||||
reason: "no_exist"
|
||||
-
|
||||
path: ".*/Tests/RunCMake/find_package/ConfigureLog/cmake/parametercheckconfig-config.cmake"
|
||||
path: "[^"]*/Tests/RunCMake/find_package/ConfigureLog/cmake/parametercheckconfig-config.cmake"
|
||||
mode: "config"
|
||||
reason: "no_exist"
|
||||
-
|
||||
path: ".*/Tests/RunCMake/find_package/ConfigureLog/lib/cmake/ParameterCheckConfig/BogusParameterCheckConfig.cmake"
|
||||
path: "[^"]*/Tests/RunCMake/find_package/ConfigureLog/lib/cmake/ParameterCheckConfig/BogusParameterCheckConfig.cmake"
|
||||
mode: "config"
|
||||
reason: "no_exist"
|
||||
-
|
||||
path: ".*/Tests/RunCMake/find_package/ConfigureLog/lib/cmake/ParameterCheckConfig/bogusparametercheck-config.cmake"
|
||||
path: "[^"]*/Tests/RunCMake/find_package/ConfigureLog/lib/cmake/ParameterCheckConfig/bogusparametercheck-config.cmake"
|
||||
mode: "config"
|
||||
reason: "no_exist"
|
||||
found:
|
||||
path: ".*/Tests/RunCMake/find_package/ConfigureLog/lib/cmake/ParameterCheckConfig/ParameterCheckConfigConfig.cmake"
|
||||
path: "[^"]*/Tests/RunCMake/find_package/ConfigureLog/lib/cmake/ParameterCheckConfig/ParameterCheckConfigConfig.cmake"
|
||||
mode: "config"
|
||||
version: "1.6"
|
||||
search_context:(
|
||||
|
||||
@@ -0,0 +1,236 @@
|
||||
^
|
||||
---
|
||||
events:(
|
||||
-
|
||||
kind: "find-v1"(
|
||||
[^
|
||||
]*)+|
|
||||
+ -
|
||||
kind: "message-v1"
|
||||
backtrace:(
|
||||
- "[^"]+")+
|
||||
message: \|(
|
||||
+ [^
|
||||
]*)*)*
|
||||
-
|
||||
kind: "message-v1"
|
||||
backtrace:
|
||||
- "ConfigureLogTransitionsConfig.cmake:[0-9]+ \(message\)"
|
||||
- "CMakeLists.txt:[0-9]+ \(include\)"
|
||||
message: |
|
||||
NotDefined -> NotFound
|
||||
-
|
||||
kind: "find_package-v1"
|
||||
backtrace:
|
||||
- "ConfigureLogTransitionsConfig.cmake:[0-9]+ \(find_package\)"
|
||||
- "CMakeLists.txt:[0-9]+ \(include\)"
|
||||
name: "ViaConfig"
|
||||
configs:
|
||||
-
|
||||
filename: "ViaConfigConfig.cmake"
|
||||
kind: "cmake"
|
||||
-
|
||||
filename: "viaconfig-config.cmake"
|
||||
kind: "cmake"
|
||||
version_request:
|
||||
exact: false
|
||||
settings:
|
||||
required: "optional"
|
||||
quiet: false
|
||||
global: false
|
||||
policy_scope: true
|
||||
bypass_provider: false
|
||||
names:
|
||||
- "ViaConfig"
|
||||
path_suffixes:
|
||||
- ""
|
||||
paths:
|
||||
CMAKE_FIND_USE_CMAKE_PATH: true
|
||||
CMAKE_FIND_USE_CMAKE_ENVIRONMENT_PATH: true
|
||||
CMAKE_FIND_USE_SYSTEM_ENVIRONMENT_PATH: true
|
||||
CMAKE_FIND_USE_CMAKE_SYSTEM_PATH: true
|
||||
CMAKE_FIND_USE_INSTALL_PREFIX: true
|
||||
CMAKE_FIND_USE_PACKAGE_ROOT_PATH: true
|
||||
CMAKE_FIND_USE_CMAKE_PACKAGE_REGISTRY: true
|
||||
CMAKE_FIND_USE_SYSTEM_PACKAGE_REGISTRY: true
|
||||
CMAKE_FIND_ROOT_PATH_MODE: "BOTH"
|
||||
candidates:
|
||||
-
|
||||
path: "[^"]*/Tests/RunCMake/find_package/ConfigureLogTransitionsConfig-build/CMakeFiles/pkgRedirects/ViaConfigConfig.cmake"
|
||||
mode: "config"
|
||||
reason: "no_exist"
|
||||
-
|
||||
path: "[^"]*/Tests/RunCMake/find_package/ConfigureLogTransitionsConfig-build/CMakeFiles/pkgRedirects/viaconfig-config.cmake"
|
||||
mode: "config"
|
||||
reason: "no_exist"(
|
||||
-
|
||||
path: "[^"]*/(viaconfig-config|ViaConfigConfig).cmake"
|
||||
mode: "config"
|
||||
reason: "no_exist")*
|
||||
found: null
|
||||
search_context:(
|
||||
[^
|
||||
]+)+
|
||||
-
|
||||
kind: "message-v1"
|
||||
backtrace:
|
||||
- "ConfigureLogTransitionsConfig.cmake:[0-9]+ \(message\)"
|
||||
- "CMakeLists.txt:[0-9]+ \(include\)"
|
||||
message: |
|
||||
NotFound -> NotFound
|
||||
-
|
||||
kind: "message-v1"
|
||||
backtrace:
|
||||
- "ConfigureLogTransitionsConfig.cmake:[0-9]+ \(message\)"
|
||||
- "CMakeLists.txt:[0-9]+ \(include\)"
|
||||
message: \|
|
||||
NotFound -> Found
|
||||
-
|
||||
kind: "find_package-v1"
|
||||
backtrace:
|
||||
- "ConfigureLogTransitionsConfig.cmake:[0-9]+ \(find_package\)"
|
||||
- "CMakeLists.txt:[0-9]+ \(include\)"
|
||||
name: "ViaConfig"
|
||||
configs:
|
||||
-
|
||||
filename: "ViaConfigConfig.cmake"
|
||||
kind: "cmake"
|
||||
-
|
||||
filename: "viaconfig-config.cmake"
|
||||
kind: "cmake"
|
||||
version_request:
|
||||
exact: false
|
||||
settings:
|
||||
required: "optional"
|
||||
quiet: false
|
||||
global: false
|
||||
policy_scope: true
|
||||
bypass_provider: false
|
||||
names:
|
||||
- "ViaConfig"
|
||||
path_suffixes:
|
||||
- ""
|
||||
paths:
|
||||
CMAKE_FIND_USE_CMAKE_PATH: true
|
||||
CMAKE_FIND_USE_CMAKE_ENVIRONMENT_PATH: true
|
||||
CMAKE_FIND_USE_SYSTEM_ENVIRONMENT_PATH: true
|
||||
CMAKE_FIND_USE_CMAKE_SYSTEM_PATH: true
|
||||
CMAKE_FIND_USE_INSTALL_PREFIX: true
|
||||
CMAKE_FIND_USE_PACKAGE_ROOT_PATH: true
|
||||
CMAKE_FIND_USE_CMAKE_PACKAGE_REGISTRY: true
|
||||
CMAKE_FIND_USE_SYSTEM_PACKAGE_REGISTRY: true
|
||||
CMAKE_FIND_ROOT_PATH_MODE: "BOTH"
|
||||
candidates:
|
||||
-
|
||||
path: "[^"]*/Tests/RunCMake/find_package/ConfigureLogTransitionsConfig-build/CMakeFiles/pkgRedirects/ViaConfigConfig.cmake"
|
||||
mode: "config"
|
||||
reason: "no_exist"
|
||||
-
|
||||
path: "[^"]*/Tests/RunCMake/find_package/ConfigureLogTransitionsConfig-build/CMakeFiles/pkgRedirects/viaconfig-config.cmake"
|
||||
mode: "config"
|
||||
reason: "no_exist"
|
||||
-
|
||||
path: "[^"]*/Tests/RunCMake/find_package/ConfigureLog/ViaConfigConfig.cmake"
|
||||
mode: "config"
|
||||
reason: "no_exist"
|
||||
-
|
||||
path: "[^"]*/Tests/RunCMake/find_package/ConfigureLog/viaconfig-config.cmake"
|
||||
mode: "config"
|
||||
reason: "no_exist"
|
||||
-
|
||||
path: "[^"]*/Tests/RunCMake/find_package/ConfigureLog/cmake/ViaConfigConfig.cmake"
|
||||
mode: "config"
|
||||
reason: "no_exist"
|
||||
-
|
||||
path: "[^"]*/Tests/RunCMake/find_package/ConfigureLog/cmake/viaconfig-config.cmake"
|
||||
mode: "config"
|
||||
reason: "no_exist"
|
||||
found:
|
||||
path: "[^"]*/Tests/RunCMake/find_package/ConfigureLog/lib/cmake/ViaConfig/ViaConfigConfig.cmake"
|
||||
mode: "config"
|
||||
version: "1\.0"
|
||||
search_context:(
|
||||
[^
|
||||
]*)+
|
||||
-
|
||||
kind: "message-v1"
|
||||
backtrace:
|
||||
- "ConfigureLogTransitionsConfig.cmake:[0-9]+ \(message\)"
|
||||
- "CMakeLists.txt:[0-9]+ \(include\)"
|
||||
message: \|
|
||||
Found -> Found
|
||||
-
|
||||
kind: "message-v1"
|
||||
backtrace:
|
||||
- "ConfigureLogTransitionsConfig.cmake:[0-9]+ \(message\)"
|
||||
- "CMakeLists.txt:[0-9]+ \(include\)"
|
||||
message: \|
|
||||
Found -> NotFound
|
||||
-
|
||||
kind: "find_package-v1"
|
||||
backtrace:
|
||||
- "ConfigureLogTransitionsConfig.cmake:[0-9]+ \(find_package\)"
|
||||
- "CMakeLists.txt:[0-9]+ \(include\)"
|
||||
name: "ViaConfig"
|
||||
configs:
|
||||
-
|
||||
filename: "ViaConfigConfig.cmake"
|
||||
kind: "cmake"
|
||||
-
|
||||
filename: "viaconfig-config.cmake"
|
||||
kind: "cmake"
|
||||
version_request:
|
||||
exact: false
|
||||
settings:
|
||||
required: "optional"
|
||||
quiet: false
|
||||
global: false
|
||||
policy_scope: true
|
||||
bypass_provider: false
|
||||
names:
|
||||
- "ViaConfig"
|
||||
path_suffixes:
|
||||
- ""
|
||||
paths:
|
||||
CMAKE_FIND_USE_CMAKE_PATH: true
|
||||
CMAKE_FIND_USE_CMAKE_ENVIRONMENT_PATH: true
|
||||
CMAKE_FIND_USE_SYSTEM_ENVIRONMENT_PATH: true
|
||||
CMAKE_FIND_USE_CMAKE_SYSTEM_PATH: true
|
||||
CMAKE_FIND_USE_INSTALL_PREFIX: true
|
||||
CMAKE_FIND_USE_PACKAGE_ROOT_PATH: true
|
||||
CMAKE_FIND_USE_CMAKE_PACKAGE_REGISTRY: true
|
||||
CMAKE_FIND_USE_SYSTEM_PACKAGE_REGISTRY: true
|
||||
CMAKE_FIND_ROOT_PATH_MODE: "BOTH"
|
||||
candidates:
|
||||
-
|
||||
path: "[^"]*/Tests/RunCMake/find_package/ViaConfigConfig.cmake"
|
||||
mode: "none\?"
|
||||
reason: "no_exist"
|
||||
-
|
||||
path: "[^"]*/Tests/RunCMake/find_package/viaconfig-config.cmake"
|
||||
mode: "none\?"
|
||||
reason: "no_exist"
|
||||
-
|
||||
path: "[^"]*/Tests/RunCMake/find_package/ConfigureLogTransitionsConfig-build/CMakeFiles/pkgRedirects/ViaConfigConfig.cmake"
|
||||
mode: "config"
|
||||
reason: "no_exist"
|
||||
-
|
||||
path: "[^"]*/Tests/RunCMake/find_package/ConfigureLogTransitionsConfig-build/CMakeFiles/pkgRedirects/viaconfig-config.cmake"
|
||||
mode: "config"
|
||||
reason: "no_exist"(
|
||||
-
|
||||
path: "[^"]*/(viaconfig-config|ViaConfigConfig).cmake"
|
||||
mode: "config"
|
||||
reason: "no_exist")*
|
||||
found: null
|
||||
search_context:(
|
||||
[^
|
||||
]+)+
|
||||
-
|
||||
kind: "message-v1"
|
||||
backtrace:
|
||||
- "ConfigureLogTransitionsConfig.cmake:[0-9]+ \(message\)"
|
||||
- "CMakeLists.txt:[0-9]+ \(include\)"
|
||||
message: \|
|
||||
END
|
||||
\.\.\.$
|
||||
@@ -0,0 +1,9 @@
|
||||
-- NotDefined -> NotFound
|
||||
-- Could NOT find ViaConfig \(missing: ViaConfig_DIR\)
|
||||
-- NotFound -> NotFound
|
||||
-- Could NOT find ViaConfig \(missing: ViaConfig_DIR\)
|
||||
-- NotFound -> Found
|
||||
-- Found -> Found
|
||||
-- Found -> NotFound
|
||||
-- Could NOT find ViaConfig \(missing: ViaConfig_DIR\)
|
||||
-- END
|
||||
@@ -0,0 +1,43 @@
|
||||
# Stable sorting for predictable behaviors.
|
||||
set(CMAKE_FIND_PACKAGE_SORT_ORDER NAME)
|
||||
|
||||
# Unset search variables for more predictable output.
|
||||
unset(CMAKE_FRAMEWORK_PATH)
|
||||
unset(CMAKE_APPBUNDLE_PATH)
|
||||
unset(ENV{CMAKE_PREFIX_PATH})
|
||||
unset(ENV{CMAKE_FRAMEWORK_PATH})
|
||||
unset(ENV{CMAKE_APPBUNDLE_PATH})
|
||||
|
||||
message(STATUS "NotDefined -> NotFound")
|
||||
message(CONFIGURE_LOG "NotDefined -> NotFound")
|
||||
find_package(ViaConfig CONFIG)
|
||||
|
||||
message(STATUS "NotFound -> NotFound")
|
||||
message(CONFIGURE_LOG "NotFound -> NotFound")
|
||||
find_package(ViaConfig CONFIG)
|
||||
|
||||
list(INSERT CMAKE_MODULE_PATH 0
|
||||
"${CMAKE_CURRENT_LIST_DIR}/ConfigureLog/cmake")
|
||||
list(INSERT CMAKE_PREFIX_PATH 0
|
||||
"${CMAKE_CURRENT_LIST_DIR}/ConfigureLog")
|
||||
|
||||
message(STATUS "NotFound -> Found")
|
||||
message(CONFIGURE_LOG "NotFound -> Found")
|
||||
find_package(ViaConfig CONFIG)
|
||||
|
||||
message(STATUS "Found -> Found")
|
||||
message(CONFIGURE_LOG "Found -> Found")
|
||||
find_package(ViaConfig CONFIG)
|
||||
|
||||
message(STATUS "Found -> NotFound")
|
||||
message(CONFIGURE_LOG "Found -> NotFound")
|
||||
list(REMOVE_AT CMAKE_PREFIX_PATH 0)
|
||||
list(REMOVE_AT CMAKE_MODULE_PATH 0)
|
||||
set_property(CACHE ViaConfig_DIR
|
||||
PROPERTY
|
||||
VALUE "${CMAKE_CURRENT_SOURCE_DIR}")
|
||||
|
||||
find_package(ViaConfig CONFIG)
|
||||
|
||||
message(STATUS "END")
|
||||
message(CONFIGURE_LOG "END")
|
||||
@@ -0,0 +1,236 @@
|
||||
^
|
||||
---
|
||||
events:(
|
||||
-
|
||||
kind: "find-v1"(
|
||||
[^
|
||||
]*)+|
|
||||
+ -
|
||||
kind: "message-v1"
|
||||
backtrace:(
|
||||
- "[^"]+")+
|
||||
message: \|(
|
||||
+ [^
|
||||
]*)*)*
|
||||
-
|
||||
kind: "message-v1"
|
||||
backtrace:
|
||||
- "ConfigureLogTransitionsConfig2.cmake:[0-9]+ \(message\)"
|
||||
- "CMakeLists.txt:[0-9]+ \(include\)"
|
||||
message: |
|
||||
NotDefined -> NotFound
|
||||
-
|
||||
kind: "find_package-v1"
|
||||
backtrace:
|
||||
- "ConfigureLogTransitionsConfig2.cmake:[0-9]+ \(find_package\)"
|
||||
- "CMakeLists.txt:[0-9]+ \(include\)"
|
||||
name: "ViaConfig"
|
||||
configs:
|
||||
-
|
||||
filename: "ViaConfigConfig.cmake"
|
||||
kind: "cmake"
|
||||
-
|
||||
filename: "viaconfig-config.cmake"
|
||||
kind: "cmake"
|
||||
version_request:
|
||||
exact: false
|
||||
settings:
|
||||
required: "optional"
|
||||
quiet: false
|
||||
global: false
|
||||
policy_scope: true
|
||||
bypass_provider: false
|
||||
names:
|
||||
- "ViaConfig"
|
||||
path_suffixes:
|
||||
- ""
|
||||
paths:
|
||||
CMAKE_FIND_USE_CMAKE_PATH: true
|
||||
CMAKE_FIND_USE_CMAKE_ENVIRONMENT_PATH: true
|
||||
CMAKE_FIND_USE_SYSTEM_ENVIRONMENT_PATH: true
|
||||
CMAKE_FIND_USE_CMAKE_SYSTEM_PATH: true
|
||||
CMAKE_FIND_USE_INSTALL_PREFIX: true
|
||||
CMAKE_FIND_USE_PACKAGE_ROOT_PATH: true
|
||||
CMAKE_FIND_USE_CMAKE_PACKAGE_REGISTRY: true
|
||||
CMAKE_FIND_USE_SYSTEM_PACKAGE_REGISTRY: true
|
||||
CMAKE_FIND_ROOT_PATH_MODE: "BOTH"
|
||||
candidates:
|
||||
-
|
||||
path: "[^"]*/Tests/RunCMake/find_package/ConfigureLogTransitionsConfig2-build/CMakeFiles/pkgRedirects/ViaConfigConfig.cmake"
|
||||
mode: "config"
|
||||
reason: "no_exist"
|
||||
-
|
||||
path: "[^"]*/Tests/RunCMake/find_package/ConfigureLogTransitionsConfig2-build/CMakeFiles/pkgRedirects/viaconfig-config.cmake"
|
||||
mode: "config"
|
||||
reason: "no_exist"(
|
||||
-
|
||||
path: "[^"]*/(viaconfig-config|ViaConfigConfig).cmake"
|
||||
mode: "config"
|
||||
reason: "no_exist")*
|
||||
found: null
|
||||
search_context:(
|
||||
[^
|
||||
]+)+
|
||||
-
|
||||
kind: "message-v1"
|
||||
backtrace:
|
||||
- "ConfigureLogTransitionsConfig2.cmake:[0-9]+ \(message\)"
|
||||
- "CMakeLists.txt:[0-9]+ \(include\)"
|
||||
message: |
|
||||
NotFound -> NotFound
|
||||
-
|
||||
kind: "message-v1"
|
||||
backtrace:
|
||||
- "ConfigureLogTransitionsConfig2.cmake:[0-9]+ \(message\)"
|
||||
- "CMakeLists.txt:[0-9]+ \(include\)"
|
||||
message: \|
|
||||
NotFound -> Found
|
||||
-
|
||||
kind: "find_package-v1"
|
||||
backtrace:
|
||||
- "ConfigureLogTransitionsConfig2.cmake:[0-9]+ \(find_package\)"
|
||||
- "CMakeLists.txt:[0-9]+ \(include\)"
|
||||
name: "ViaConfig"
|
||||
configs:
|
||||
-
|
||||
filename: "ViaConfigConfig.cmake"
|
||||
kind: "cmake"
|
||||
-
|
||||
filename: "viaconfig-config.cmake"
|
||||
kind: "cmake"
|
||||
version_request:
|
||||
exact: false
|
||||
settings:
|
||||
required: "optional"
|
||||
quiet: false
|
||||
global: false
|
||||
policy_scope: true
|
||||
bypass_provider: false
|
||||
names:
|
||||
- "ViaConfig"
|
||||
path_suffixes:
|
||||
- ""
|
||||
paths:
|
||||
CMAKE_FIND_USE_CMAKE_PATH: true
|
||||
CMAKE_FIND_USE_CMAKE_ENVIRONMENT_PATH: true
|
||||
CMAKE_FIND_USE_SYSTEM_ENVIRONMENT_PATH: true
|
||||
CMAKE_FIND_USE_CMAKE_SYSTEM_PATH: true
|
||||
CMAKE_FIND_USE_INSTALL_PREFIX: true
|
||||
CMAKE_FIND_USE_PACKAGE_ROOT_PATH: true
|
||||
CMAKE_FIND_USE_CMAKE_PACKAGE_REGISTRY: true
|
||||
CMAKE_FIND_USE_SYSTEM_PACKAGE_REGISTRY: true
|
||||
CMAKE_FIND_ROOT_PATH_MODE: "BOTH"
|
||||
candidates:
|
||||
-
|
||||
path: "[^"]*/Tests/RunCMake/find_package/ConfigureLogTransitionsConfig2-build/CMakeFiles/pkgRedirects/ViaConfigConfig.cmake"
|
||||
mode: "config"
|
||||
reason: "no_exist"
|
||||
-
|
||||
path: "[^"]*/Tests/RunCMake/find_package/ConfigureLogTransitionsConfig2-build/CMakeFiles/pkgRedirects/viaconfig-config.cmake"
|
||||
mode: "config"
|
||||
reason: "no_exist"
|
||||
-
|
||||
path: "[^"]*/Tests/RunCMake/find_package/ConfigureLog/ViaConfigConfig.cmake"
|
||||
mode: "config"
|
||||
reason: "no_exist"
|
||||
-
|
||||
path: "[^"]*/Tests/RunCMake/find_package/ConfigureLog/viaconfig-config.cmake"
|
||||
mode: "config"
|
||||
reason: "no_exist"
|
||||
-
|
||||
path: "[^"]*/Tests/RunCMake/find_package/ConfigureLog/cmake/ViaConfigConfig.cmake"
|
||||
mode: "config"
|
||||
reason: "no_exist"
|
||||
-
|
||||
path: "[^"]*/Tests/RunCMake/find_package/ConfigureLog/cmake/viaconfig-config.cmake"
|
||||
mode: "config"
|
||||
reason: "no_exist"
|
||||
found:
|
||||
path: "[^"]*/Tests/RunCMake/find_package/ConfigureLog/lib/cmake/ViaConfig/ViaConfigConfig.cmake"
|
||||
mode: "config"
|
||||
version: "1\.0"
|
||||
search_context:(
|
||||
[^
|
||||
]*)+
|
||||
-
|
||||
kind: "message-v1"
|
||||
backtrace:
|
||||
- "ConfigureLogTransitionsConfig2.cmake:[0-9]+ \(message\)"
|
||||
- "CMakeLists.txt:[0-9]+ \(include\)"
|
||||
message: \|
|
||||
Found -> Found
|
||||
-
|
||||
kind: "message-v1"
|
||||
backtrace:
|
||||
- "ConfigureLogTransitionsConfig2.cmake:[0-9]+ \(message\)"
|
||||
- "CMakeLists.txt:[0-9]+ \(include\)"
|
||||
message: \|
|
||||
Found -> NotFound
|
||||
-
|
||||
kind: "find_package-v1"
|
||||
backtrace:
|
||||
- "ConfigureLogTransitionsConfig2.cmake:[0-9]+ \(find_package\)"
|
||||
- "CMakeLists.txt:[0-9]+ \(include\)"
|
||||
name: "ViaConfig"
|
||||
configs:
|
||||
-
|
||||
filename: "ViaConfigConfig.cmake"
|
||||
kind: "cmake"
|
||||
-
|
||||
filename: "viaconfig-config.cmake"
|
||||
kind: "cmake"
|
||||
version_request:
|
||||
exact: false
|
||||
settings:
|
||||
required: "optional"
|
||||
quiet: false
|
||||
global: false
|
||||
policy_scope: true
|
||||
bypass_provider: false
|
||||
names:
|
||||
- "ViaConfig"
|
||||
path_suffixes:
|
||||
- ""
|
||||
paths:
|
||||
CMAKE_FIND_USE_CMAKE_PATH: true
|
||||
CMAKE_FIND_USE_CMAKE_ENVIRONMENT_PATH: true
|
||||
CMAKE_FIND_USE_SYSTEM_ENVIRONMENT_PATH: true
|
||||
CMAKE_FIND_USE_CMAKE_SYSTEM_PATH: true
|
||||
CMAKE_FIND_USE_INSTALL_PREFIX: true
|
||||
CMAKE_FIND_USE_PACKAGE_ROOT_PATH: true
|
||||
CMAKE_FIND_USE_CMAKE_PACKAGE_REGISTRY: true
|
||||
CMAKE_FIND_USE_SYSTEM_PACKAGE_REGISTRY: true
|
||||
CMAKE_FIND_ROOT_PATH_MODE: "BOTH"
|
||||
candidates:
|
||||
-
|
||||
path: "[^"]*/Tests/RunCMake/find_package/ViaConfigConfig.cmake"
|
||||
mode: "none\?"
|
||||
reason: "no_exist"
|
||||
-
|
||||
path: "[^"]*/Tests/RunCMake/find_package/viaconfig-config.cmake"
|
||||
mode: "none\?"
|
||||
reason: "no_exist"
|
||||
-
|
||||
path: "[^"]*/Tests/RunCMake/find_package/ConfigureLogTransitionsConfig2-build/CMakeFiles/pkgRedirects/ViaConfigConfig.cmake"
|
||||
mode: "config"
|
||||
reason: "no_exist"
|
||||
-
|
||||
path: "[^"]*/Tests/RunCMake/find_package/ConfigureLogTransitionsConfig2-build/CMakeFiles/pkgRedirects/viaconfig-config.cmake"
|
||||
mode: "config"
|
||||
reason: "no_exist"(
|
||||
-
|
||||
path: "[^"]*/(viaconfig-config|ViaConfigConfig).cmake"
|
||||
mode: "config"
|
||||
reason: "no_exist")*
|
||||
found: null
|
||||
search_context:(
|
||||
[^
|
||||
]+)+
|
||||
-
|
||||
kind: "message-v1"
|
||||
backtrace:
|
||||
- "ConfigureLogTransitionsConfig2.cmake:[0-9]+ \(message\)"
|
||||
- "CMakeLists.txt:[0-9]+ \(include\)"
|
||||
message: \|
|
||||
END
|
||||
\.\.\.$
|
||||
@@ -0,0 +1,63 @@
|
||||
^NotDefined -> NotFound
|
||||
CMake Warning at ConfigureLogTransitionsConfig2.cmake:[0-9]+ \(find_package\):
|
||||
By not providing "FindViaConfig.cmake" in CMAKE_MODULE_PATH this project
|
||||
has asked CMake to find a package configuration file provided by
|
||||
"ViaConfig", but CMake did not find one.
|
||||
|
||||
Could not find a package configuration file provided by "ViaConfig" with
|
||||
any of the following names:
|
||||
|
||||
ViaConfigConfig.cmake
|
||||
viaconfig-config.cmake
|
||||
|
||||
Add the installation prefix of "ViaConfig" to CMAKE_PREFIX_PATH or set
|
||||
"ViaConfig_DIR" to a directory containing one of the above files. If
|
||||
"ViaConfig" provides a separate development package or SDK, be sure it has
|
||||
been installed.
|
||||
Call Stack \(most recent call first\):
|
||||
CMakeLists.txt:[0-9]+ \(include\)
|
||||
|
||||
|
||||
NotFound -> NotFound
|
||||
CMake Warning at ConfigureLogTransitionsConfig2.cmake:[0-9]+ \(find_package\):
|
||||
By not providing "FindViaConfig.cmake" in CMAKE_MODULE_PATH this project
|
||||
has asked CMake to find a package configuration file provided by
|
||||
"ViaConfig", but CMake did not find one.
|
||||
|
||||
Could not find a package configuration file provided by "ViaConfig" with
|
||||
any of the following names:
|
||||
|
||||
ViaConfigConfig.cmake
|
||||
viaconfig-config.cmake
|
||||
|
||||
Add the installation prefix of "ViaConfig" to CMAKE_PREFIX_PATH or set
|
||||
"ViaConfig_DIR" to a directory containing one of the above files. If
|
||||
"ViaConfig" provides a separate development package or SDK, be sure it has
|
||||
been installed.
|
||||
Call Stack \(most recent call first\):
|
||||
CMakeLists.txt:[0-9]+ \(include\)
|
||||
|
||||
|
||||
NotFound -> Found
|
||||
Found -> Found
|
||||
Found -> NotFound
|
||||
CMake Warning at ConfigureLogTransitionsConfig2.cmake:[0-9]+ \(find_package\):
|
||||
By not providing "FindViaConfig.cmake" in CMAKE_MODULE_PATH this project
|
||||
has asked CMake to find a package configuration file provided by
|
||||
"ViaConfig", but CMake did not find one.
|
||||
|
||||
Could not find a package configuration file provided by "ViaConfig" with
|
||||
any of the following names:
|
||||
|
||||
ViaConfigConfig.cmake
|
||||
viaconfig-config.cmake
|
||||
|
||||
Add the installation prefix of "ViaConfig" to CMAKE_PREFIX_PATH or set
|
||||
"ViaConfig_DIR" to a directory containing one of the above files. If
|
||||
"ViaConfig" provides a separate development package or SDK, be sure it has
|
||||
been installed.
|
||||
Call Stack \(most recent call first\):
|
||||
CMakeLists.txt:[0-9]+ \(include\)
|
||||
|
||||
|
||||
END
|
||||
@@ -0,0 +1,43 @@
|
||||
# Stable sorting for predictable behaviors.
|
||||
set(CMAKE_FIND_PACKAGE_SORT_ORDER NAME)
|
||||
|
||||
# Unset search variables for more predictable output.
|
||||
unset(CMAKE_FRAMEWORK_PATH)
|
||||
unset(CMAKE_APPBUNDLE_PATH)
|
||||
unset(ENV{CMAKE_PREFIX_PATH})
|
||||
unset(ENV{CMAKE_FRAMEWORK_PATH})
|
||||
unset(ENV{CMAKE_APPBUNDLE_PATH})
|
||||
|
||||
message("NotDefined -> NotFound")
|
||||
message(CONFIGURE_LOG "NotDefined -> NotFound")
|
||||
find_package(ViaConfig)
|
||||
|
||||
message("NotFound -> NotFound")
|
||||
message(CONFIGURE_LOG "NotFound -> NotFound")
|
||||
find_package(ViaConfig)
|
||||
|
||||
list(INSERT CMAKE_MODULE_PATH 0
|
||||
"${CMAKE_CURRENT_LIST_DIR}/ConfigureLog/cmake")
|
||||
list(INSERT CMAKE_PREFIX_PATH 0
|
||||
"${CMAKE_CURRENT_LIST_DIR}/ConfigureLog")
|
||||
|
||||
message("NotFound -> Found")
|
||||
message(CONFIGURE_LOG "NotFound -> Found")
|
||||
find_package(ViaConfig)
|
||||
|
||||
message("Found -> Found")
|
||||
message(CONFIGURE_LOG "Found -> Found")
|
||||
find_package(ViaConfig)
|
||||
|
||||
message("Found -> NotFound")
|
||||
message(CONFIGURE_LOG "Found -> NotFound")
|
||||
list(REMOVE_AT CMAKE_PREFIX_PATH 0)
|
||||
list(REMOVE_AT CMAKE_MODULE_PATH 0)
|
||||
set_property(CACHE ViaConfig_DIR
|
||||
PROPERTY
|
||||
VALUE "${CMAKE_CURRENT_SOURCE_DIR}")
|
||||
|
||||
find_package(ViaConfig)
|
||||
|
||||
message("END")
|
||||
message(CONFIGURE_LOG "END")
|
||||
@@ -0,0 +1,57 @@
|
||||
^
|
||||
---
|
||||
events:(
|
||||
-
|
||||
kind: "find-v1"(
|
||||
[^
|
||||
]*)+|
|
||||
+ -
|
||||
kind: "message-v1"
|
||||
backtrace:(
|
||||
- "[^"]+")+
|
||||
message: \|(
|
||||
+ [^
|
||||
]*)*)*
|
||||
-
|
||||
kind: "message-v1"
|
||||
backtrace:
|
||||
- "ConfigureLogTransitionsModule.cmake:[0-9]+ \(message\)"
|
||||
- "CMakeLists.txt:[0-9]+ \(include\)"
|
||||
message: \|
|
||||
NotDefined -> NotFound
|
||||
-
|
||||
kind: "message-v1"
|
||||
backtrace:
|
||||
- "ConfigureLogTransitionsModule.cmake:[0-9]+ \(message\)"
|
||||
- "CMakeLists.txt:[0-9]+ \(include\)"
|
||||
message: \|
|
||||
NotFound -> NotFound
|
||||
-
|
||||
kind: "message-v1"
|
||||
backtrace:
|
||||
- "ConfigureLogTransitionsModule.cmake:[0-9]+ \(message\)"
|
||||
- "CMakeLists.txt:[0-9]+ \(include\)"
|
||||
message: \|
|
||||
NotFound -> Found
|
||||
-
|
||||
kind: "message-v1"
|
||||
backtrace:
|
||||
- "ConfigureLogTransitionsModule.cmake:[0-9]+ \(message\)"
|
||||
- "CMakeLists.txt:[0-9]+ \(include\)"
|
||||
message: \|
|
||||
Found -> Found
|
||||
-
|
||||
kind: "message-v1"
|
||||
backtrace:
|
||||
- "ConfigureLogTransitionsModule.cmake:[0-9]+ \(message\)"
|
||||
- "CMakeLists.txt:[0-9]+ \(include\)"
|
||||
message: \|
|
||||
Found -> NotFound
|
||||
-
|
||||
kind: "message-v1"
|
||||
backtrace:
|
||||
- "ConfigureLogTransitionsModule.cmake:[0-9]+ \(message\)"
|
||||
- "CMakeLists.txt:[0-9]+ \(include\)"
|
||||
message: \|
|
||||
END
|
||||
\.\.\.$
|
||||
@@ -0,0 +1,72 @@
|
||||
^NotDefined -> NotFound
|
||||
CMake Warning at ConfigureLogTransitionsModule.cmake:[0-9]+ \(find_package\):
|
||||
No "FindViaModule.cmake" found in CMAKE_MODULE_PATH.
|
||||
Call Stack \(most recent call first\):
|
||||
CMakeLists.txt:[0-9]+ \(include\)
|
||||
|
||||
|
||||
CMake Warning \(dev\) at ConfigureLogTransitionsModule.cmake:[0-9]+ \(find_package\):
|
||||
FindViaModule.cmake must either be part of this project itself, in this
|
||||
case adjust CMAKE_MODULE_PATH so that it points to the correct location
|
||||
inside its source tree.
|
||||
|
||||
Or it must be installed by a package which has already been found via
|
||||
find_package\(\). In this case make sure that package has indeed been found
|
||||
and adjust CMAKE_MODULE_PATH to contain the location where that package has
|
||||
installed FindViaModule.cmake. This must be a location provided by that
|
||||
package. This error in general means that the buildsystem of this project
|
||||
is relying on a Find-module without ensuring that it is actually available.
|
||||
|
||||
Call Stack \(most recent call first\):
|
||||
CMakeLists.txt:[0-9]+ \(include\)
|
||||
This warning is for project developers. Use -Wno-dev to suppress it.
|
||||
|
||||
NotFound -> NotFound
|
||||
CMake Warning at ConfigureLogTransitionsModule.cmake:[0-9]+ \(find_package\):
|
||||
No "FindViaModule.cmake" found in CMAKE_MODULE_PATH.
|
||||
Call Stack \(most recent call first\):
|
||||
CMakeLists.txt:[0-9]+ \(include\)
|
||||
|
||||
|
||||
CMake Warning \(dev\) at ConfigureLogTransitionsModule.cmake:[0-9]+ \(find_package\):
|
||||
FindViaModule.cmake must either be part of this project itself, in this
|
||||
case adjust CMAKE_MODULE_PATH so that it points to the correct location
|
||||
inside its source tree.
|
||||
|
||||
Or it must be installed by a package which has already been found via
|
||||
find_package\(\). In this case make sure that package has indeed been found
|
||||
and adjust CMAKE_MODULE_PATH to contain the location where that package has
|
||||
installed FindViaModule.cmake. This must be a location provided by that
|
||||
package. This error in general means that the buildsystem of this project
|
||||
is relying on a Find-module without ensuring that it is actually available.
|
||||
|
||||
Call Stack \(most recent call first\):
|
||||
CMakeLists.txt:[0-9]+ \(include\)
|
||||
This warning is for project developers. Use -Wno-dev to suppress it.
|
||||
|
||||
NotFound -> Found
|
||||
Found -> Found
|
||||
Found -> NotFound
|
||||
CMake Warning at ConfigureLogTransitionsModule.cmake:[0-9]+ \(find_package\):
|
||||
No "FindViaModule.cmake" found in CMAKE_MODULE_PATH.
|
||||
Call Stack \(most recent call first\):
|
||||
CMakeLists.txt:[0-9]+ \(include\)
|
||||
|
||||
|
||||
CMake Warning \(dev\) at ConfigureLogTransitionsModule.cmake:[0-9]+ \(find_package\):
|
||||
FindViaModule.cmake must either be part of this project itself, in this
|
||||
case adjust CMAKE_MODULE_PATH so that it points to the correct location
|
||||
inside its source tree.
|
||||
|
||||
Or it must be installed by a package which has already been found via
|
||||
find_package\(\). In this case make sure that package has indeed been found
|
||||
and adjust CMAKE_MODULE_PATH to contain the location where that package has
|
||||
installed FindViaModule.cmake. This must be a location provided by that
|
||||
package. This error in general means that the buildsystem of this project
|
||||
is relying on a Find-module without ensuring that it is actually available.
|
||||
|
||||
Call Stack \(most recent call first\):
|
||||
CMakeLists.txt:[0-9]+ \(include\)
|
||||
This warning is for project developers. Use -Wno-dev to suppress it.
|
||||
|
||||
END$
|
||||
@@ -0,0 +1,41 @@
|
||||
# Stable sorting for predictable behaviors.
|
||||
set(CMAKE_FIND_PACKAGE_SORT_ORDER NAME)
|
||||
|
||||
# Unset search variables for more predictable output.
|
||||
unset(CMAKE_FRAMEWORK_PATH)
|
||||
unset(CMAKE_APPBUNDLE_PATH)
|
||||
unset(ENV{CMAKE_PREFIX_PATH})
|
||||
unset(ENV{CMAKE_FRAMEWORK_PATH})
|
||||
unset(ENV{CMAKE_APPBUNDLE_PATH})
|
||||
|
||||
message("NotDefined -> NotFound")
|
||||
message(CONFIGURE_LOG "NotDefined -> NotFound")
|
||||
find_package(ViaModule MODULE)
|
||||
|
||||
message("NotFound -> NotFound")
|
||||
message(CONFIGURE_LOG "NotFound -> NotFound")
|
||||
find_package(ViaModule MODULE)
|
||||
|
||||
list(INSERT CMAKE_MODULE_PATH 0
|
||||
"${CMAKE_CURRENT_LIST_DIR}/ConfigureLog/cmake")
|
||||
list(INSERT CMAKE_PREFIX_PATH 0
|
||||
"${CMAKE_CURRENT_LIST_DIR}/ConfigureLog")
|
||||
|
||||
message("NotFound -> Found")
|
||||
message(CONFIGURE_LOG "NotFound -> Found")
|
||||
find_package(ViaModule MODULE)
|
||||
|
||||
message("Found -> Found")
|
||||
message(CONFIGURE_LOG "Found -> Found")
|
||||
find_package(ViaModule MODULE)
|
||||
|
||||
message("Found -> NotFound")
|
||||
message(CONFIGURE_LOG "Found -> NotFound")
|
||||
list(REMOVE_AT CMAKE_PREFIX_PATH 0)
|
||||
list(REMOVE_AT CMAKE_MODULE_PATH 0)
|
||||
unset(ViaModule_FOUND)
|
||||
|
||||
find_package(ViaModule MODULE)
|
||||
|
||||
message("END")
|
||||
message(CONFIGURE_LOG "END")
|
||||
@@ -0,0 +1,161 @@
|
||||
^
|
||||
---
|
||||
events:(
|
||||
-
|
||||
kind: "find-v1"(
|
||||
[^
|
||||
]*)+|
|
||||
+ -
|
||||
kind: "message-v1"
|
||||
backtrace:(
|
||||
- "[^"]+")+
|
||||
message: \|(
|
||||
+ [^
|
||||
]*)*)*
|
||||
-
|
||||
kind: "message-v1"
|
||||
backtrace:
|
||||
- "ConfigureLogTransitionsModule2.cmake:[0-9]+ \(message\)"
|
||||
- "CMakeLists.txt:[0-9]+ \(include\)"
|
||||
message: \|
|
||||
NotDefined -> NotFound
|
||||
-
|
||||
kind: "find_package-v1"
|
||||
backtrace:
|
||||
- "ConfigureLogTransitionsModule2.cmake:[0-9]+ \(find_package\)"
|
||||
- "CMakeLists.txt:[0-9]+ \(include\)"
|
||||
name: "ViaModule"
|
||||
configs:
|
||||
-
|
||||
filename: "ViaModuleConfig.cmake"
|
||||
kind: "cmake"
|
||||
-
|
||||
filename: "viamodule-config.cmake"
|
||||
kind: "cmake"
|
||||
version_request:
|
||||
exact: false
|
||||
settings:
|
||||
required: "optional"
|
||||
quiet: false
|
||||
global: false
|
||||
policy_scope: true
|
||||
bypass_provider: false
|
||||
names:
|
||||
- "ViaModule"
|
||||
path_suffixes:
|
||||
- ""
|
||||
paths:
|
||||
CMAKE_FIND_USE_CMAKE_PATH: true
|
||||
CMAKE_FIND_USE_CMAKE_ENVIRONMENT_PATH: true
|
||||
CMAKE_FIND_USE_SYSTEM_ENVIRONMENT_PATH: true
|
||||
CMAKE_FIND_USE_CMAKE_SYSTEM_PATH: true
|
||||
CMAKE_FIND_USE_INSTALL_PREFIX: true
|
||||
CMAKE_FIND_USE_PACKAGE_ROOT_PATH: true
|
||||
CMAKE_FIND_USE_CMAKE_PACKAGE_REGISTRY: true
|
||||
CMAKE_FIND_USE_SYSTEM_PACKAGE_REGISTRY: true
|
||||
CMAKE_FIND_ROOT_PATH_MODE: "BOTH"
|
||||
candidates:
|
||||
-
|
||||
path: "[^"]*/Tests/RunCMake/find_package/ConfigureLogTransitionsModule2-build/CMakeFiles/pkgRedirects/ViaModuleConfig.cmake"
|
||||
mode: "config"
|
||||
reason: "no_exist"
|
||||
-
|
||||
path: "[^"]*/Tests/RunCMake/find_package/ConfigureLogTransitionsModule2-build/CMakeFiles/pkgRedirects/viamodule-config.cmake"
|
||||
mode: "config"
|
||||
reason: "no_exist"(
|
||||
-
|
||||
path: "[^"]*/(viamodule-config|ViaModuleConfig).cmake"
|
||||
mode: "config"
|
||||
reason: "no_exist")*
|
||||
found: null
|
||||
search_context:(
|
||||
[^
|
||||
]*)+
|
||||
-
|
||||
kind: "message-v1"
|
||||
backtrace:
|
||||
- "ConfigureLogTransitionsModule2.cmake:[0-9]+ \(message\)"
|
||||
- "CMakeLists.txt:[0-9]+ \(include\)"
|
||||
message: \|
|
||||
NotFound -> NotFound
|
||||
-
|
||||
kind: "message-v1"
|
||||
backtrace:
|
||||
- "ConfigureLogTransitionsModule2.cmake:[0-9]+ \(message\)"
|
||||
- "CMakeLists.txt:[0-9]+ \(include\)"
|
||||
message: \|
|
||||
NotFound -> Found
|
||||
-
|
||||
kind: "message-v1"
|
||||
backtrace:
|
||||
- "ConfigureLogTransitionsModule2.cmake:[0-9]+ \(message\)"
|
||||
- "CMakeLists.txt:[0-9]+ \(include\)"
|
||||
message: \|
|
||||
Found -> Found
|
||||
-
|
||||
kind: "message-v1"
|
||||
backtrace:
|
||||
- "ConfigureLogTransitionsModule2.cmake:[0-9]+ \(message\)"
|
||||
- "CMakeLists.txt:[0-9]+ \(include\)"
|
||||
message: \|
|
||||
Found -> NotFound
|
||||
-
|
||||
kind: "find_package-v1"
|
||||
backtrace:
|
||||
- "ConfigureLogTransitionsModule2.cmake:[0-9]+ \(find_package\)"
|
||||
- "CMakeLists.txt:[0-9]+ \(include\)"
|
||||
name: "ViaModule"
|
||||
configs:
|
||||
-
|
||||
filename: "ViaModuleConfig.cmake"
|
||||
kind: "cmake"
|
||||
-
|
||||
filename: "viamodule-config.cmake"
|
||||
kind: "cmake"
|
||||
version_request:
|
||||
exact: false
|
||||
settings:
|
||||
required: "optional"
|
||||
quiet: false
|
||||
global: false
|
||||
policy_scope: true
|
||||
bypass_provider: false
|
||||
names:
|
||||
- "ViaModule"
|
||||
path_suffixes:
|
||||
- ""
|
||||
paths:
|
||||
CMAKE_FIND_USE_CMAKE_PATH: true
|
||||
CMAKE_FIND_USE_CMAKE_ENVIRONMENT_PATH: true
|
||||
CMAKE_FIND_USE_SYSTEM_ENVIRONMENT_PATH: true
|
||||
CMAKE_FIND_USE_CMAKE_SYSTEM_PATH: true
|
||||
CMAKE_FIND_USE_INSTALL_PREFIX: true
|
||||
CMAKE_FIND_USE_PACKAGE_ROOT_PATH: true
|
||||
CMAKE_FIND_USE_CMAKE_PACKAGE_REGISTRY: true
|
||||
CMAKE_FIND_USE_SYSTEM_PACKAGE_REGISTRY: true
|
||||
CMAKE_FIND_ROOT_PATH_MODE: "BOTH"
|
||||
candidates:
|
||||
-
|
||||
path: "[^"]*/Tests/RunCMake/find_package/ConfigureLogTransitionsModule2-build/CMakeFiles/pkgRedirects/ViaModuleConfig.cmake"
|
||||
mode: "config"
|
||||
reason: "no_exist"
|
||||
-
|
||||
path: "[^"]*/Tests/RunCMake/find_package/ConfigureLogTransitionsModule2-build/CMakeFiles/pkgRedirects/viamodule-config.cmake"
|
||||
mode: "config"
|
||||
reason: "no_exist"(
|
||||
-
|
||||
path: "[^"]*/(viamodule-config|ViaModuleConfig).cmake"
|
||||
mode: "config"
|
||||
reason: "no_exist")*
|
||||
found: null
|
||||
search_context:(
|
||||
[^
|
||||
]+)+
|
||||
-
|
||||
kind: "message-v1"
|
||||
backtrace:
|
||||
- "ConfigureLogTransitionsModule2.cmake:[0-9]+ \(message\)"
|
||||
- "CMakeLists.txt:[0-9]+ \(include\)"
|
||||
message: \|
|
||||
END
|
||||
\.\.\.$
|
||||
@@ -0,0 +1,63 @@
|
||||
^NotDefined -> NotFound
|
||||
CMake Warning at ConfigureLogTransitionsModule2.cmake:[0-9]+ \(find_package\):
|
||||
By not providing "FindViaModule.cmake" in CMAKE_MODULE_PATH this project
|
||||
has asked CMake to find a package configuration file provided by
|
||||
"ViaModule", but CMake did not find one.
|
||||
|
||||
Could not find a package configuration file provided by "ViaModule" with
|
||||
any of the following names:
|
||||
|
||||
ViaModuleConfig.cmake
|
||||
viamodule-config.cmake
|
||||
|
||||
Add the installation prefix of "ViaModule" to CMAKE_PREFIX_PATH or set
|
||||
"ViaModule_DIR" to a directory containing one of the above files. If
|
||||
"ViaModule" provides a separate development package or SDK, be sure it has
|
||||
been installed.
|
||||
Call Stack \(most recent call first\):
|
||||
CMakeLists.txt:[0-9]+ \(include\)
|
||||
|
||||
|
||||
NotFound -> NotFound
|
||||
CMake Warning at ConfigureLogTransitionsModule2.cmake:[0-9]+ \(find_package\):
|
||||
By not providing "FindViaModule.cmake" in CMAKE_MODULE_PATH this project
|
||||
has asked CMake to find a package configuration file provided by
|
||||
"ViaModule", but CMake did not find one.
|
||||
|
||||
Could not find a package configuration file provided by "ViaModule" with
|
||||
any of the following names:
|
||||
|
||||
ViaModuleConfig.cmake
|
||||
viamodule-config.cmake
|
||||
|
||||
Add the installation prefix of "ViaModule" to CMAKE_PREFIX_PATH or set
|
||||
"ViaModule_DIR" to a directory containing one of the above files. If
|
||||
"ViaModule" provides a separate development package or SDK, be sure it has
|
||||
been installed.
|
||||
Call Stack \(most recent call first\):
|
||||
CMakeLists.txt:[0-9]+ \(include\)
|
||||
|
||||
|
||||
NotFound -> Found
|
||||
Found -> Found
|
||||
Found -> NotFound
|
||||
CMake Warning at ConfigureLogTransitionsModule2.cmake:[0-9]+ \(find_package\):
|
||||
By not providing "FindViaModule.cmake" in CMAKE_MODULE_PATH this project
|
||||
has asked CMake to find a package configuration file provided by
|
||||
"ViaModule", but CMake did not find one.
|
||||
|
||||
Could not find a package configuration file provided by "ViaModule" with
|
||||
any of the following names:
|
||||
|
||||
ViaModuleConfig.cmake
|
||||
viamodule-config.cmake
|
||||
|
||||
Add the installation prefix of "ViaModule" to CMAKE_PREFIX_PATH or set
|
||||
"ViaModule_DIR" to a directory containing one of the above files. If
|
||||
"ViaModule" provides a separate development package or SDK, be sure it has
|
||||
been installed.
|
||||
Call Stack \(most recent call first\):
|
||||
CMakeLists.txt:[0-9]+ \(include\)
|
||||
|
||||
|
||||
END$
|
||||
@@ -0,0 +1,40 @@
|
||||
# Stable sorting for predictable behaviors.
|
||||
set(CMAKE_FIND_PACKAGE_SORT_ORDER NAME)
|
||||
|
||||
# Unset search variables for more predictable output.
|
||||
unset(CMAKE_FRAMEWORK_PATH)
|
||||
unset(CMAKE_APPBUNDLE_PATH)
|
||||
unset(ENV{CMAKE_PREFIX_PATH})
|
||||
unset(ENV{CMAKE_FRAMEWORK_PATH})
|
||||
unset(ENV{CMAKE_APPBUNDLE_PATH})
|
||||
|
||||
message("NotDefined -> NotFound")
|
||||
message(CONFIGURE_LOG "NotDefined -> NotFound")
|
||||
find_package(ViaModule)
|
||||
|
||||
message("NotFound -> NotFound")
|
||||
message(CONFIGURE_LOG "NotFound -> NotFound")
|
||||
find_package(ViaModule)
|
||||
|
||||
list(INSERT CMAKE_MODULE_PATH 0
|
||||
"${CMAKE_CURRENT_LIST_DIR}/ConfigureLog/cmake")
|
||||
list(INSERT CMAKE_PREFIX_PATH 0
|
||||
"${CMAKE_CURRENT_LIST_DIR}/ConfigureLog")
|
||||
|
||||
message("NotFound -> Found")
|
||||
message(CONFIGURE_LOG "NotFound -> Found")
|
||||
find_package(ViaModule)
|
||||
|
||||
message("Found -> Found")
|
||||
message(CONFIGURE_LOG "Found -> Found")
|
||||
find_package(ViaModule)
|
||||
|
||||
message("Found -> NotFound")
|
||||
message(CONFIGURE_LOG "Found -> NotFound")
|
||||
list(REMOVE_AT CMAKE_PREFIX_PATH 0)
|
||||
list(REMOVE_AT CMAKE_MODULE_PATH 0)
|
||||
|
||||
find_package(ViaModule)
|
||||
|
||||
message("END")
|
||||
message(CONFIGURE_LOG "END")
|
||||
@@ -8,6 +8,10 @@ run_cmake(ConfigureLog)
|
||||
# Two tests because the stderr regex otherwise takes way too long to load.
|
||||
run_cmake(ConfigureLogParameters1)
|
||||
run_cmake(ConfigureLogParameters2)
|
||||
run_cmake(ConfigureLogTransitionsConfig) # with `CONFIG`
|
||||
run_cmake(ConfigureLogTransitionsConfig2) # without `CONFIG`, finding config
|
||||
run_cmake(ConfigureLogTransitionsModule) # with `MODULE`
|
||||
run_cmake(ConfigureLogTransitionsModule2) # without `MODULE`, finding module
|
||||
run_cmake(EmptyRoots)
|
||||
run_cmake(FromPATHEnv)
|
||||
run_cmake_with_options(FromPATHEnvDebugPkg --debug-find-pkg=Resolved)
|
||||
|
||||
@@ -0,0 +1,169 @@
|
||||
^
|
||||
---
|
||||
events:(
|
||||
-
|
||||
kind: "find-v1"(
|
||||
[^
|
||||
]*)+|
|
||||
+ -
|
||||
kind: "message-v1"
|
||||
backtrace:(
|
||||
- "[^"]+")+
|
||||
message: \|(
|
||||
+ [^
|
||||
]*)*)*
|
||||
-
|
||||
kind: "message-v1"
|
||||
backtrace:
|
||||
- "ConfigureLogTransitions.cmake:[0-9]+ \(message\)"
|
||||
- "CMakeLists.txt:[0-9]+ \(include\)"
|
||||
message: |
|
||||
NotDefined -> NotFound
|
||||
-
|
||||
kind: "find-v1"
|
||||
backtrace:
|
||||
- "ConfigureLogTransitions.cmake:[0-9]+ \(find_path\)"
|
||||
- "CMakeLists.txt:[0-9]+ \(include\)"
|
||||
mode: "path"
|
||||
variable: "NOEXIST_FILE"
|
||||
description: "Path to a file."
|
||||
settings:
|
||||
SearchFramework: "(NEVER|FIRST)"
|
||||
SearchAppBundle: "(NEVER|FIRST)"
|
||||
CMAKE_FIND_USE_CMAKE_PATH: true
|
||||
CMAKE_FIND_USE_CMAKE_ENVIRONMENT_PATH: true
|
||||
CMAKE_FIND_USE_SYSTEM_ENVIRONMENT_PATH: true
|
||||
CMAKE_FIND_USE_CMAKE_SYSTEM_PATH: true
|
||||
CMAKE_FIND_USE_INSTALL_PREFIX: true
|
||||
names:
|
||||
- "NoExist.h"
|
||||
candidate_directories:
|
||||
- ".*/Tests/RunCMake/find_path/include/"
|
||||
- ".*/Tests/RunCMake/find_path/"(
|
||||
- "[^"]+")+
|
||||
searched_directories:
|
||||
- ".*/Tests/RunCMake/find_path/include/NoExist.h"
|
||||
- ".*/Tests/RunCMake/find_path/NoExist.h"(
|
||||
- "[^"]+")+
|
||||
found: false
|
||||
search_context:(
|
||||
[^
|
||||
]*)+
|
||||
-
|
||||
kind: "message-v1"
|
||||
backtrace:
|
||||
- "ConfigureLogTransitions.cmake:[0-9]+ \(find_path\)"
|
||||
- "CMakeLists.txt:[0-9]+ \(include\)"
|
||||
message: |
|
||||
NotFound -> NotFound
|
||||
-
|
||||
kind: "message-v1"
|
||||
backtrace:
|
||||
- "ConfigureLogTransitions.cmake:[0-9]+ \(find_path\)"
|
||||
- "CMakeLists.txt:[0-9]+ \(include\)"
|
||||
message: |
|
||||
NotDefined -> Found
|
||||
-
|
||||
kind: "find-v1"
|
||||
backtrace:
|
||||
- "ConfigureLogTransitions.cmake:[0-9]+ \(find_path\)"
|
||||
- "CMakeLists.txt:[0-9]+ \(include\)"
|
||||
mode: "path"
|
||||
variable: "PREFIX_IN_PATH"
|
||||
description: "Path to a file."
|
||||
settings:
|
||||
SearchFramework: "(NEVER|FIRST)"
|
||||
SearchAppBundle: "(NEVER|FIRST)"
|
||||
CMAKE_FIND_USE_CMAKE_PATH: true
|
||||
CMAKE_FIND_USE_CMAKE_ENVIRONMENT_PATH: true
|
||||
CMAKE_FIND_USE_SYSTEM_ENVIRONMENT_PATH: true
|
||||
CMAKE_FIND_USE_CMAKE_SYSTEM_PATH: true
|
||||
CMAKE_FIND_USE_INSTALL_PREFIX: true
|
||||
names:
|
||||
- "PrefixInPATH.h"
|
||||
candidate_directories:
|
||||
- ".*/Tests/RunCMake/find_path/include/"
|
||||
- ".*/Tests/RunCMake/find_path/"(
|
||||
- "[^"]+")+
|
||||
found: ".*/Tests/RunCMake/find_path/include/PrefixInPATH.h"
|
||||
search_context:(
|
||||
[^
|
||||
]*)+
|
||||
-
|
||||
kind: "message-v1"
|
||||
backtrace:
|
||||
- "ConfigureLogTransitions.cmake:[0-9]+ \(find_path\)"
|
||||
- "CMakeLists.txt:[0-9]+ \(include\)"
|
||||
message: |
|
||||
Found -> Found
|
||||
-
|
||||
kind: "message-v1"
|
||||
backtrace:
|
||||
- "ConfigureLogTransitions.cmake:[0-9]+ \(find_path\)"
|
||||
- "CMakeLists.txt:[0-9]+ \(include\)"
|
||||
message: |
|
||||
Found -> NotFound
|
||||
-
|
||||
kind: "find-v1"
|
||||
backtrace:
|
||||
- "ConfigureLogTransitions.cmake:[0-9]+ \(find_path\)"
|
||||
- "CMakeLists.txt:[0-9]+ \(include\)"
|
||||
mode: "path"
|
||||
variable: "PREFIX_IN_PATH"
|
||||
description: "Path to a file."
|
||||
settings:
|
||||
SearchFramework: "(NEVER|FIRST)"
|
||||
SearchAppBundle: "(NEVER|FIRST)"
|
||||
CMAKE_FIND_USE_CMAKE_PATH: true
|
||||
CMAKE_FIND_USE_CMAKE_ENVIRONMENT_PATH: true
|
||||
CMAKE_FIND_USE_SYSTEM_ENVIRONMENT_PATH: true
|
||||
CMAKE_FIND_USE_CMAKE_SYSTEM_PATH: true
|
||||
CMAKE_FIND_USE_INSTALL_PREFIX: true
|
||||
names:
|
||||
- "PrefixInPATH.h"
|
||||
candidate_directories:
|
||||
- ".*/Tests/RunCMake/find_path/include/"
|
||||
- ".*/Tests/RunCMake/find_path/"(
|
||||
- "[^"]+")+
|
||||
searched_directories:
|
||||
- ".*/Tests/RunCMake/find_path/include/NoExist.h"
|
||||
- ".*/Tests/RunCMake/find_path/NoExist.h"(
|
||||
- "[^"]+")+
|
||||
found: false
|
||||
search_context:(
|
||||
[^
|
||||
]*)+
|
||||
-
|
||||
kind: "message-v1"
|
||||
backtrace:
|
||||
- "ConfigureLogTransitions.cmake:[0-9]+ \(find_path\)"
|
||||
- "CMakeLists.txt:[0-9]+ \(include\)"
|
||||
message: |
|
||||
NotFound -> Found
|
||||
-
|
||||
kind: "find-v1"
|
||||
backtrace:
|
||||
- "ConfigureLogTransitions.cmake:[0-9]+ \(find_path\)"
|
||||
- "CMakeLists.txt:[0-9]+ \(include\)"
|
||||
mode: "path"
|
||||
variable: "PREFIX_IN_PATH"
|
||||
description: "Path to a file."
|
||||
settings:
|
||||
SearchFramework: "(NEVER|FIRST)"
|
||||
SearchAppBundle: "(NEVER|FIRST)"
|
||||
CMAKE_FIND_USE_CMAKE_PATH: true
|
||||
CMAKE_FIND_USE_CMAKE_ENVIRONMENT_PATH: true
|
||||
CMAKE_FIND_USE_SYSTEM_ENVIRONMENT_PATH: true
|
||||
CMAKE_FIND_USE_CMAKE_SYSTEM_PATH: true
|
||||
CMAKE_FIND_USE_INSTALL_PREFIX: true
|
||||
names:
|
||||
- "PrefixInPATH.h"
|
||||
candidate_directories:
|
||||
- ".*/Tests/RunCMake/find_path/include/"
|
||||
- ".*/Tests/RunCMake/find_path/"(
|
||||
- "[^"]+")+
|
||||
found: ".*/Tests/RunCMake/find_path/include/PrefixInPATH.h"
|
||||
search_context:(
|
||||
[^
|
||||
]*)+
|
||||
...
|
||||
@@ -0,0 +1,22 @@
|
||||
set(CMAKE_PREFIX_PATH "${CMAKE_CURRENT_SOURCE_DIR}")
|
||||
|
||||
message(CONFIGURE_LOG "NotDefined -> NotFound")
|
||||
find_path(NOEXIST_FILE NAMES NoExist.h)
|
||||
|
||||
message(CONFIGURE_LOG "NotFound -> NotFound")
|
||||
find_path(NOEXIST_FILE NAMES NoExist.h)
|
||||
|
||||
message(CONFIGURE_LOG "NotDefined -> Found")
|
||||
find_path(PREFIX_IN_PATH NAMES PrefixInPATH.h)
|
||||
|
||||
message(CONFIGURE_LOG "Found -> Found")
|
||||
find_path(PREFIX_IN_PATH NAMES PrefixInPATH.h)
|
||||
|
||||
message(CONFIGURE_LOG "Found -> NotFound")
|
||||
unset(PREFIX_IN_PATH CACHE)
|
||||
unset(CMAKE_PREFIX_PATH)
|
||||
find_path(PREFIX_IN_PATH NAMES PrefixInPATH.h)
|
||||
|
||||
message(CONFIGURE_LOG "NotFound -> Found")
|
||||
set(CMAKE_PREFIX_PATH "${CMAKE_CURRENT_SOURCE_DIR}")
|
||||
find_path(PREFIX_IN_PATH NAMES PrefixInPATH.h)
|
||||
@@ -26,4 +26,4 @@
|
||||
|
||||
find_path considered the following locations:.*
|
||||
The item was found at.*
|
||||
.*include/PrefixInPATH.*
|
||||
.*find_path/include/
|
||||
|
||||
@@ -26,4 +26,4 @@
|
||||
|
||||
find_path considered the following locations:.*
|
||||
The item was found at.*
|
||||
.*include/PrefixInPATH.*
|
||||
.*find_path/include/
|
||||
|
||||
@@ -1,5 +1,6 @@
|
||||
include(RunCMake)
|
||||
|
||||
run_cmake(ConfigureLogTransitions)
|
||||
run_cmake(EmptyOldStyle)
|
||||
run_cmake(FromPATHEnv)
|
||||
run_cmake(PrefixInPATH)
|
||||
|
||||
@@ -0,0 +1,177 @@
|
||||
^
|
||||
---
|
||||
events:
|
||||
-
|
||||
events:(
|
||||
-
|
||||
kind: "find-v1"(
|
||||
[^
|
||||
]*)+|
|
||||
+ -
|
||||
kind: "message-v1"
|
||||
backtrace:(
|
||||
- "[^"]+")+
|
||||
message: \|(
|
||||
+ [^
|
||||
]*)*)*
|
||||
-
|
||||
kind: "message-v1"
|
||||
backtrace:
|
||||
- "ConfigureLogTransitions.cmake:[0-9]+ \(message\)"
|
||||
- "CMakeLists.txt:[0-9]+ \(include\)"
|
||||
message: |
|
||||
NotDefined -> NotFound
|
||||
-
|
||||
kind: "find-v1"
|
||||
backtrace:
|
||||
- "ConfigureLogTransitions.cmake:[0-9]+ \(find_program\)"
|
||||
- "CMakeLists.txt:[0-9]+ \(include\)"
|
||||
mode: "program"
|
||||
variable: "NOEXIST_FILE"
|
||||
description: "Path to a program."
|
||||
settings:
|
||||
SearchFramework: "(NEVER|FIRST)"
|
||||
SearchAppBundle: "(NEVER|FIRST)"
|
||||
CMAKE_FIND_USE_CMAKE_PATH: true
|
||||
CMAKE_FIND_USE_CMAKE_ENVIRONMENT_PATH: true
|
||||
CMAKE_FIND_USE_SYSTEM_ENVIRONMENT_PATH: true
|
||||
CMAKE_FIND_USE_CMAKE_SYSTEM_PATH: true
|
||||
CMAKE_FIND_USE_INSTALL_PREFIX: true
|
||||
names:
|
||||
- "NoExist"
|
||||
candidate_directories:
|
||||
- ".*/Tests/RunCMake/find_program/Prefix/bin/"
|
||||
- ".*/Tests/RunCMake/find_program/Prefix/sbin/"
|
||||
- ".*/Tests/RunCMake/find_program/Prefix/"(
|
||||
- "[^"]+")+
|
||||
searched_directories:(
|
||||
- ".*/Tests/RunCMake/find_program/Prefix/bin/NoExist(|.com|.exe)")+(
|
||||
- ".*/Tests/RunCMake/find_program/Prefix/sbin/NoExist(|.com|.exe)")+(
|
||||
- ".*/Tests/RunCMake/find_program/Prefix/NoExist(|.com|.exe)")+(
|
||||
- "[^"]+")+
|
||||
found: false
|
||||
search_context:(
|
||||
[^
|
||||
]*)+
|
||||
-
|
||||
kind: "message-v1"
|
||||
backtrace:
|
||||
- "ConfigureLogTransitions.cmake:[0-9]+ \(find_program\)"
|
||||
- "CMakeLists.txt:[0-9]+ \(include\)"
|
||||
message: |
|
||||
NotFound -> NotFound
|
||||
-
|
||||
kind: "message-v1"
|
||||
backtrace:
|
||||
- "ConfigureLogTransitions.cmake:[0-9]+ \(find_program\)"
|
||||
- "CMakeLists.txt:[0-9]+ \(include\)"
|
||||
message: |
|
||||
NotDefined -> Found
|
||||
-
|
||||
kind: "find-v1"
|
||||
backtrace:
|
||||
- "ConfigureLogTransitions.cmake:[0-9]+ \(find_program\)"
|
||||
- "CMakeLists.txt:[0-9]+ \(include\)"
|
||||
mode: "program"
|
||||
variable: "PREFIX_IN_PATH"
|
||||
description: "Path to a program."
|
||||
settings:
|
||||
SearchFramework: "(NEVER|FIRST)"
|
||||
SearchAppBundle: "(NEVER|FIRST)"
|
||||
CMAKE_FIND_USE_CMAKE_PATH: true
|
||||
CMAKE_FIND_USE_CMAKE_ENVIRONMENT_PATH: true
|
||||
CMAKE_FIND_USE_SYSTEM_ENVIRONMENT_PATH: true
|
||||
CMAKE_FIND_USE_CMAKE_SYSTEM_PATH: true
|
||||
CMAKE_FIND_USE_INSTALL_PREFIX: true
|
||||
names:
|
||||
- "prog"
|
||||
candidate_directories:
|
||||
- ".*/Tests/RunCMake/find_program/Prefix/bin/"
|
||||
- ".*/Tests/RunCMake/find_program/Prefix/sbin/"
|
||||
- ".*/Tests/RunCMake/find_program/Prefix/"(
|
||||
- "[^"]+")+(
|
||||
searched_directories:
|
||||
- ".*/Tests/RunCMake/find_program/Prefix/bin/prog.com"
|
||||
- ".*/Tests/RunCMake/find_program/Prefix/bin/prog.exe")?
|
||||
found: ".*/Tests/RunCMake/find_program/Prefix/bin/prog"
|
||||
search_context:(
|
||||
[^
|
||||
]*)+
|
||||
-
|
||||
kind: "message-v1"
|
||||
backtrace:
|
||||
- "ConfigureLogTransitions.cmake:[0-9]+ \(message\)"
|
||||
- "CMakeLists.txt:[0-9]+ \(include\)"
|
||||
message: |
|
||||
Found -> Found
|
||||
-
|
||||
kind: "message-v1"
|
||||
backtrace:
|
||||
- "ConfigureLogTransitions.cmake:[0-9]+ \(find_program\)"
|
||||
- "CMakeLists.txt:[0-9]+ \(include\)"
|
||||
message: |
|
||||
Found -> NotFound
|
||||
-
|
||||
kind: "find-v1"
|
||||
backtrace:
|
||||
- "ConfigureLogTransitions.cmake:[0-9]+ \(find_program\)"
|
||||
- "CMakeLists.txt:[0-9]+ \(include\)"
|
||||
mode: "program"
|
||||
variable: "PREFIX_IN_PATH"
|
||||
description: "Path to a program."
|
||||
settings:
|
||||
SearchFramework: "(NEVER|FIRST)"
|
||||
SearchAppBundle: "(NEVER|FIRST)"
|
||||
CMAKE_FIND_USE_CMAKE_PATH: true
|
||||
CMAKE_FIND_USE_CMAKE_ENVIRONMENT_PATH: true
|
||||
CMAKE_FIND_USE_SYSTEM_ENVIRONMENT_PATH: true
|
||||
CMAKE_FIND_USE_CMAKE_SYSTEM_PATH: true
|
||||
CMAKE_FIND_USE_INSTALL_PREFIX: true
|
||||
names:
|
||||
- "prog"
|
||||
candidate_directories:(
|
||||
- "[^"]+")+
|
||||
searched_directories:(
|
||||
- "[^"]+")+
|
||||
found: false
|
||||
search_context:(
|
||||
[^
|
||||
]*)+
|
||||
-
|
||||
kind: "message-v1"
|
||||
backtrace:
|
||||
- "ConfigureLogTransitions.cmake:[0-9]+ \(find_program\)"
|
||||
- "CMakeLists.txt:[0-9]+ \(include\)"
|
||||
message: |
|
||||
NotFound -> Found
|
||||
-
|
||||
kind: "find-v1"
|
||||
backtrace:
|
||||
- "ConfigureLogTransitions.cmake:[0-9]+ \(find_program\)"
|
||||
- "CMakeLists.txt:[0-9]+ \(include\)"
|
||||
mode: "program"
|
||||
variable: "PREFIX_IN_PATH"
|
||||
description: "Path to a program."
|
||||
settings:
|
||||
SearchFramework: "(NEVER|FIRST)"
|
||||
SearchAppBundle: "(NEVER|FIRST)"
|
||||
CMAKE_FIND_USE_CMAKE_PATH: true
|
||||
CMAKE_FIND_USE_CMAKE_ENVIRONMENT_PATH: true
|
||||
CMAKE_FIND_USE_SYSTEM_ENVIRONMENT_PATH: true
|
||||
CMAKE_FIND_USE_CMAKE_SYSTEM_PATH: true
|
||||
CMAKE_FIND_USE_INSTALL_PREFIX: true
|
||||
names:
|
||||
- "prog"
|
||||
candidate_directories:
|
||||
- ".*/Tests/RunCMake/find_program/Prefix/bin/"
|
||||
- ".*/Tests/RunCMake/find_program/Prefix/sbin/"
|
||||
- ".*/Tests/RunCMake/find_program/Prefix/"(
|
||||
- "[^"]+")+(
|
||||
searched_directories:
|
||||
- ".*/Tests/RunCMake/find_program/Prefix/bin/prog.com"
|
||||
- ".*/Tests/RunCMake/find_program/Prefix/bin/prog.exe")?
|
||||
found: ".*/Tests/RunCMake/find_program/Prefix/bin/prog"
|
||||
search_context:(
|
||||
[^
|
||||
]*)+
|
||||
...
|
||||
@@ -0,0 +1,22 @@
|
||||
set(CMAKE_PREFIX_PATH "${CMAKE_CURRENT_SOURCE_DIR}/Prefix")
|
||||
|
||||
message(CONFIGURE_LOG "NotDefined -> NotFound")
|
||||
find_program(NOEXIST_FILE NAMES NoExist)
|
||||
|
||||
message(CONFIGURE_LOG "NotFound -> NotFound")
|
||||
find_program(NOEXIST_FILE NAMES NoExist)
|
||||
|
||||
message(CONFIGURE_LOG "NotDefined -> Found")
|
||||
find_program(PREFIX_IN_PATH NAMES prog)
|
||||
|
||||
message(CONFIGURE_LOG "Found -> Found")
|
||||
find_program(PREFIX_IN_PATH NAMES prog)
|
||||
|
||||
message(CONFIGURE_LOG "Found -> NotFound")
|
||||
unset(PREFIX_IN_PATH CACHE)
|
||||
unset(CMAKE_PREFIX_PATH)
|
||||
find_program(PREFIX_IN_PATH NAMES prog)
|
||||
|
||||
message(CONFIGURE_LOG "NotFound -> Found")
|
||||
set(CMAKE_PREFIX_PATH "${CMAKE_CURRENT_SOURCE_DIR}")
|
||||
find_program(PREFIX_IN_PATH NAMES prog)
|
||||
@@ -1,5 +1,6 @@
|
||||
include(RunCMake)
|
||||
|
||||
run_cmake(ConfigureLogTransitions)
|
||||
run_cmake(EnvAndHints)
|
||||
run_cmake(DirsPerName)
|
||||
run_cmake(NamesPerDir)
|
||||
|
||||
@@ -2,28 +2,16 @@
|
||||
---
|
||||
events:(
|
||||
-
|
||||
kind: "find-v1"(
|
||||
[^
|
||||
]*)+|
|
||||
+ -
|
||||
kind: "message-v1"
|
||||
backtrace:(
|
||||
- "[^"]+")+
|
||||
message: \|(
|
||||
+ [^
|
||||
]*)*|
|
||||
-
|
||||
kind: "find-v1"
|
||||
backtrace:(
|
||||
- "[^"]+")+
|
||||
mode: "[^"]*"
|
||||
variable: "[^"]*"
|
||||
description: "[^"]*"
|
||||
settings:(
|
||||
[A-Za-z_]+: (true|false|"(NEVER|ONLY|FIRST|LAST)"))+
|
||||
names:(
|
||||
- "[^"]+")+
|
||||
candidate_directories:(
|
||||
- "[^"]+")*
|
||||
searched_directories:(
|
||||
- "[^"]+")*
|
||||
found: (false|"[^"]*"))+
|
||||
]*)*)*
|
||||
-
|
||||
kind: "try_compile-v1"
|
||||
backtrace:
|
||||
@@ -44,37 +32,25 @@ events:(
|
||||
cached: true
|
||||
stdout: \|.*
|
||||
exitCode: 0(
|
||||
-
|
||||
+ -
|
||||
kind: "find-v1"(
|
||||
[^
|
||||
]*)+|
|
||||
+ -
|
||||
kind: "message-v1"
|
||||
backtrace:(
|
||||
- "[^"]+")+
|
||||
message: \|(
|
||||
+ [^
|
||||
]*)*|
|
||||
-
|
||||
kind: "find-v1"
|
||||
backtrace:(
|
||||
- "[^"]+")+
|
||||
mode: "[^"]*"
|
||||
variable: "[^"]*"
|
||||
description: "[^"]*"
|
||||
settings:(
|
||||
[A-Za-z_]+: (true|false|"(NEVER|ONLY|FIRST|LAST)"))+
|
||||
names:(
|
||||
- "[^"]+")+
|
||||
candidate_directories:(
|
||||
- "[^"]+")*
|
||||
searched_directories:(
|
||||
- "[^"]+")*
|
||||
found: (false|"[^"]*"))+(
|
||||
]*)*)+(
|
||||
-
|
||||
kind: "try_compile-v1"
|
||||
backtrace:
|
||||
- ".*/Modules/Internal/FeatureTesting.cmake:[0-9]+ \(try_compile\)"
|
||||
- ".*/Modules/Internal/FeatureTesting.cmake:[0-9]+ \(_record_compiler_features\)"
|
||||
- ".*/Modules/Compiler/CMakeCommonCompilerMacros.cmake:[0-9]+ \(_record_compiler_features_c\)"
|
||||
- ".*/Modules/CMakeDetermineCompilerSupport.cmake:[0-9]+ \(cmake_record_c_compile_features\)"
|
||||
- ".*/Modules/CMakeTestCCompiler.cmake:[0-9]+ \(CMAKE_DETERMINE_COMPILER_SUPPORT\)"
|
||||
- "[^"]*/Modules/Internal/FeatureTesting.cmake:[0-9]+ \(try_compile\)"
|
||||
- "[^"]*/Modules/Internal/FeatureTesting.cmake:[0-9]+ \(_record_compiler_features\)"
|
||||
- "[^"]*/Modules/Compiler/CMakeCommonCompilerMacros.cmake:[0-9]+ \(_record_compiler_features_c\)"
|
||||
- "[^"]*/Modules/CMakeDetermineCompilerSupport.cmake:[0-9]+ \(cmake_record_c_compile_features\)"
|
||||
- "[^"]*/Modules/CMakeTestCCompiler.cmake:[0-9]+ \(CMAKE_DETERMINE_COMPILER_SUPPORT\)"
|
||||
- "ConfigureLog.cmake:[0-9]+ \(enable_language\)"
|
||||
- "CMakeLists.txt:[0-9]+ \(include\)"
|
||||
checks:
|
||||
@@ -89,7 +65,7 @@ events:(
|
||||
variable: "CMAKE_C_FEATURE_TEST"
|
||||
cached: true
|
||||
stdout: \|.*
|
||||
exitCode: 0)?
|
||||
exitCode: 0)*
|
||||
-
|
||||
kind: "try_compile-v1"
|
||||
backtrace:
|
||||
|
||||
@@ -8,22 +8,10 @@ events:(
|
||||
message: \|(
|
||||
+ [^
|
||||
]*)*|
|
||||
-
|
||||
kind: "find-v1"
|
||||
backtrace:(
|
||||
- "[^"]+")+
|
||||
mode: "[^"]*"
|
||||
variable: "[^"]*"
|
||||
description: "[^"]*"
|
||||
settings:(
|
||||
[A-Za-z_]+: (true|false|"(NEVER|ONLY|FIRST|LAST)"))+
|
||||
names:(
|
||||
- "[^"]+")+
|
||||
candidate_directories:(
|
||||
- "[^"]+")*
|
||||
searched_directories:(
|
||||
- "[^"]+")*
|
||||
found: (false|"[^"]*"))+
|
||||
+ -
|
||||
kind: "find-v1"(
|
||||
[^
|
||||
]*)+)*
|
||||
-
|
||||
kind: "try_compile-v1"
|
||||
backtrace:
|
||||
@@ -44,29 +32,17 @@ events:(
|
||||
cached: true
|
||||
stdout: \|.*
|
||||
exitCode: 0(
|
||||
-
|
||||
+ -
|
||||
kind: "message-v1"
|
||||
backtrace:(
|
||||
- "[^"]+")+
|
||||
message: \|(
|
||||
+ [^
|
||||
]*)*|
|
||||
-
|
||||
kind: "find-v1"
|
||||
backtrace:(
|
||||
- "[^"]+")+
|
||||
mode: "[^"]*"
|
||||
variable: "[^"]*"
|
||||
description: "[^"]*"
|
||||
settings:(
|
||||
[A-Za-z_]+: (true|false|"(NEVER|ONLY|FIRST|LAST)"))+
|
||||
names:(
|
||||
- "[^"]+")+
|
||||
candidate_directories:(
|
||||
- "[^"]+")*
|
||||
searched_directories:(
|
||||
- "[^"]+")*
|
||||
found: (false|"[^"]*"))+
|
||||
+ -
|
||||
kind: "find-v1"(
|
||||
[^
|
||||
]*)+)*
|
||||
-
|
||||
kind: "try_compile-v1"
|
||||
backtrace:
|
||||
@@ -87,7 +63,7 @@ events:(
|
||||
cached: true
|
||||
stdout: \|.*
|
||||
exitCode: 0(
|
||||
-
|
||||
+ -
|
||||
kind: "message-v1"
|
||||
backtrace:(
|
||||
- "[^"]+")+
|
||||
|
||||
@@ -20,8 +20,11 @@ events:(
|
||||
names:(
|
||||
- "[^"]+")+
|
||||
candidate_directories:(
|
||||
- "[^"]+")*
|
||||
- "[^"]+")*(
|
||||
searched_directories:(
|
||||
- "[^"]+")*
|
||||
found: (false|"[^"]*"))+
|
||||
\.\.\.$
|
||||
- "[^"]+")*)?
|
||||
found: (false|"[^"]*")
|
||||
search_context:(
|
||||
[^
|
||||
]*)+)+
|
||||
+\.\.\.$
|
||||
|
||||
@@ -2,28 +2,16 @@
|
||||
---
|
||||
events:(
|
||||
-
|
||||
kind: "find-v1"(
|
||||
[^
|
||||
]*)+|
|
||||
+ -
|
||||
kind: "message-v1"
|
||||
backtrace:(
|
||||
- "[^"]+")+
|
||||
message: \|(
|
||||
+ [^
|
||||
]*)*|
|
||||
-
|
||||
kind: "find-v1"
|
||||
backtrace:(
|
||||
- "[^"]+")+
|
||||
mode: "[^"]*"
|
||||
variable: "[^"]*"
|
||||
description: "[^"]*"
|
||||
settings:(
|
||||
[A-Za-z_]+: (true|false|"(NEVER|ONLY|FIRST|LAST)"))+
|
||||
names:(
|
||||
- "[^"]+")+
|
||||
candidate_directories:(
|
||||
- "[^"]+")*
|
||||
searched_directories:(
|
||||
- "[^"]+")*
|
||||
found: (false|"[^"]*"))+
|
||||
]*)*)*
|
||||
-
|
||||
kind: "try_compile-v1"
|
||||
backtrace:
|
||||
@@ -44,29 +32,17 @@ events:(
|
||||
cached: true
|
||||
stdout: \|.*
|
||||
exitCode: 0(
|
||||
-
|
||||
+ -
|
||||
kind: "message-v1"
|
||||
backtrace:(
|
||||
- "[^"]+")+
|
||||
message: \|(
|
||||
+ [^
|
||||
]*)*|
|
||||
-
|
||||
kind: "find-v1"
|
||||
backtrace:(
|
||||
- "[^"]+")+
|
||||
mode: "[^"]*"
|
||||
variable: "[^"]*"
|
||||
description: "[^"]*"
|
||||
settings:(
|
||||
[A-Za-z_]+: (true|false|"(NEVER|ONLY|FIRST|LAST)"))+
|
||||
names:(
|
||||
- "[^"]+")+
|
||||
candidate_directories:(
|
||||
- "[^"]+")*
|
||||
searched_directories:(
|
||||
- "[^"]+")*
|
||||
found: (false|"[^"]*"))*
|
||||
+ -
|
||||
kind: "find-v1"(
|
||||
[^
|
||||
]*)+)*
|
||||
-
|
||||
kind: "try_compile-v1"
|
||||
backtrace:
|
||||
|
||||
@@ -2,28 +2,16 @@
|
||||
---
|
||||
events:(
|
||||
-
|
||||
kind: "find-v1"(
|
||||
[^
|
||||
]*)+|
|
||||
+ -
|
||||
kind: "message-v1"
|
||||
backtrace:(
|
||||
- "[^"]+")+
|
||||
message: \|(
|
||||
+ [^
|
||||
]*)*|
|
||||
-
|
||||
kind: "find-v1"
|
||||
backtrace:(
|
||||
- "[^"]+")+
|
||||
mode: "[^"]*"
|
||||
variable: "[^"]*"
|
||||
description: "[^"]*"
|
||||
settings:(
|
||||
[A-Za-z_]+: (true|false|"(NEVER|ONLY|FIRST|LAST)"))+
|
||||
names:(
|
||||
- "[^"]+")+
|
||||
candidate_directories:(
|
||||
- "[^"]+")*
|
||||
searched_directories:(
|
||||
- "[^"]+")*
|
||||
found: (false|"[^"]*"))+
|
||||
]*)*)*
|
||||
-
|
||||
kind: "try_compile-v1"
|
||||
backtrace:
|
||||
@@ -43,29 +31,39 @@ events:(
|
||||
cached: true
|
||||
stdout: \|.*
|
||||
exitCode: 0(
|
||||
-
|
||||
+ -
|
||||
kind: "find-v1"(
|
||||
[^
|
||||
]*)+|
|
||||
+ -
|
||||
kind: "message-v1"
|
||||
backtrace:(
|
||||
- "[^"]+")+
|
||||
message: \|(
|
||||
+ [^
|
||||
]*)*|
|
||||
]*)*)+(
|
||||
-
|
||||
kind: "find-v1"
|
||||
backtrace:(
|
||||
- "[^"]+")+
|
||||
mode: "[^"]*"
|
||||
variable: "[^"]*"
|
||||
description: "[^"]*"
|
||||
settings:(
|
||||
[A-Za-z_]+: (true|false|"(NEVER|ONLY|FIRST|LAST)"))+
|
||||
names:(
|
||||
- "[^"]+")+
|
||||
candidate_directories:(
|
||||
- "[^"]+")*
|
||||
searched_directories:(
|
||||
- "[^"]+")*
|
||||
found: (false|"[^"]*"))*
|
||||
kind: "try_compile-v1"
|
||||
backtrace:
|
||||
- "[^"]*/Modules/Internal/FeatureTesting.cmake:[0-9]+ \(try_compile\)"
|
||||
- "[^"]*/Modules/Internal/FeatureTesting.cmake:[0-9]+ \(_record_compiler_features\)"
|
||||
- "[^"]*/Modules/Compiler/CMakeCommonCompilerMacros.cmake:[0-9]+ \(_record_compiler_features_c\)"
|
||||
- "[^"]*/Modules/CMakeDetermineCompilerSupport.cmake:[0-9]+ \(cmake_record_c_compile_features\)"
|
||||
- "[^"]*/Modules/CMakeTestCCompiler.cmake:[0-9]+ \(CMAKE_DETERMINE_COMPILER_SUPPORT\)"
|
||||
- "CMakeLists.txt:[0-9]+ \(project\)"
|
||||
checks:
|
||||
- "Detecting C compile features"
|
||||
directories:
|
||||
source: "[^"]*/Tests/RunCMake/try_run/ConfigureLog-build/CMakeFiles/CMakeScratch/TryCompile-[^/"]+"
|
||||
binary: "[^"]*/Tests/RunCMake/try_run/ConfigureLog-build/CMakeFiles/CMakeScratch/TryCompile-[^/"]+"
|
||||
cmakeVariables:(
|
||||
CMAKE_[^
|
||||
]*)+
|
||||
buildResult:
|
||||
variable: "CMAKE_C_FEATURE_TEST"
|
||||
cached: true
|
||||
stdout: \|.*
|
||||
exitCode: 0)*
|
||||
-
|
||||
kind: "try_run-v1"
|
||||
backtrace:
|
||||
|
||||
Reference in New Issue
Block a user