2009-09-28 19:43:28 +04:00
|
|
|
/*============================================================================
|
|
|
|
CMake - Cross Platform Makefile Generator
|
|
|
|
Copyright 2000-2009 Kitware, Inc., Insight Software Consortium
|
2006-02-28 00:38:22 +03:00
|
|
|
|
2009-09-28 19:43:28 +04:00
|
|
|
Distributed under the OSI-approved BSD License (the "License");
|
|
|
|
see accompanying file Copyright.txt for details.
|
2006-02-28 00:38:22 +03:00
|
|
|
|
2009-09-28 19:43:28 +04:00
|
|
|
This software is distributed WITHOUT ANY WARRANTY; without even the
|
|
|
|
implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
|
|
|
|
See the License for more information.
|
|
|
|
============================================================================*/
|
2006-02-28 00:38:22 +03:00
|
|
|
#include "cmFindBase.h"
|
2012-08-13 21:42:58 +04:00
|
|
|
|
2015-03-08 15:51:20 +03:00
|
|
|
#include "cmAlgorithms.h"
|
2015-04-06 11:52:45 +03:00
|
|
|
#include "cmState.h"
|
2015-03-08 15:51:20 +03:00
|
|
|
|
2006-02-28 00:38:22 +03:00
|
|
|
cmFindBase::cmFindBase()
|
|
|
|
{
|
|
|
|
this->AlreadyInCache = false;
|
2006-07-18 23:21:26 +04:00
|
|
|
this->AlreadyInCacheWithoutMetaInfo = false;
|
2012-09-24 19:05:10 +04:00
|
|
|
this->NamesPerDir = false;
|
|
|
|
this->NamesPerDirAllowed = false;
|
2010-11-12 18:47:28 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
//----------------------------------------------------------------------------
|
2006-02-28 00:38:22 +03:00
|
|
|
bool cmFindBase::ParseArguments(std::vector<std::string> const& argsIn)
|
|
|
|
{
|
|
|
|
if(argsIn.size() < 2 )
|
|
|
|
{
|
|
|
|
this->SetError("called with incorrect number of arguments");
|
|
|
|
return false;
|
|
|
|
}
|
2006-04-13 19:00:52 +04:00
|
|
|
|
2006-02-28 00:38:22 +03:00
|
|
|
// copy argsIn into args so it can be modified,
|
2012-08-13 21:42:58 +04:00
|
|
|
// in the process extract the DOC "documentation"
|
2006-02-28 00:38:22 +03:00
|
|
|
size_t size = argsIn.size();
|
|
|
|
std::vector<std::string> args;
|
|
|
|
bool foundDoc = false;
|
|
|
|
for(unsigned int j = 0; j < size; ++j)
|
|
|
|
{
|
|
|
|
if(foundDoc || argsIn[j] != "DOC" )
|
|
|
|
{
|
2006-03-17 01:49:16 +03:00
|
|
|
if(argsIn[j] == "ENV")
|
|
|
|
{
|
|
|
|
if(j+1 < size)
|
|
|
|
{
|
|
|
|
j++;
|
|
|
|
cmSystemTools::GetPath(args, argsIn[j].c_str());
|
|
|
|
}
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
args.push_back(argsIn[j]);
|
|
|
|
}
|
2006-02-28 00:38:22 +03:00
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
if(j+1 < size)
|
|
|
|
{
|
|
|
|
foundDoc = true;
|
|
|
|
this->VariableDocumentation = argsIn[j+1];
|
|
|
|
j++;
|
|
|
|
if(j >= size)
|
|
|
|
{
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2010-11-30 16:39:16 +03:00
|
|
|
if(args.size() < 2 )
|
|
|
|
{
|
|
|
|
this->SetError("called with incorrect number of arguments");
|
|
|
|
return false;
|
|
|
|
}
|
2006-02-28 00:38:22 +03:00
|
|
|
this->VariableName = args[0];
|
|
|
|
if(this->CheckForVariableInCache())
|
|
|
|
{
|
|
|
|
this->AlreadyInCache = true;
|
|
|
|
return true;
|
|
|
|
}
|
2012-08-13 21:42:58 +04:00
|
|
|
this->AlreadyInCache = false;
|
2008-01-17 17:02:31 +03:00
|
|
|
|
|
|
|
// Find the current root path mode.
|
|
|
|
this->SelectDefaultRootPathMode();
|
|
|
|
|
|
|
|
// Find the current bundle/framework search policy.
|
|
|
|
this->SelectDefaultMacMode();
|
ENH: merge CMake-CrossCompileBasic to HEAD
-add a RESULT_VARIABLE to INCLUDE()
-add CMAKE_TOOLCHAIN_FILE for specifiying your (potentially crosscompiling) toolchain
-have TRY_RUN() complain if you try to use it in crosscompiling mode (which were compiled but cannot run on this system)
-use CMAKE_EXECUTABLE_SUFFIX in TRY_RUN(), probably TRY_RUN won't be able to
run the executables if they have a different suffix because they are
probably crosscompiled, but nevertheless it should be able to find them
-make several cmake variables presettable by the user: CMAKE_C/CXX_COMPILER, CMAKE_C/CXX_OUTPUT_EXTENSION, CMAKE_SYSTEM_NAME, CMAKE_SYSTEM_INFO_FILE
-support prefix for GNU toolchains (arm-elf-gcc, arm-elf-ar, arm-elf-strip etc.)
-move ranlib on OSX from the file command to a command in executed in cmake_install.cmake
-add support for stripping during install in cmake_install.cmake
-split out cl.cmake from Windows-cl.cmake, first (very incomplete) step to support MS crosscompiling tools
-remove stdio.h from the simple C program which checks if the compiler works, since this may not exist for some embedded platforms
-create a new CMakeFindBinUtils.cmake which collects the search fro ar, ranlib, strip, ld, link, install_name_tool and other tools like these
-add support for CMAKE_FIND_ROOT_PATH for all FIND_XXX commands, which is a
list of directories which will be prepended to all search directories, right
now as a cmake variable, turning it into a global cmake property may need
some more work
-remove cmTestTestHandler::TryExecutable(), it's unused
-split cmFileCommand::HandleInstall() into slightly smaller functions
Alex
2007-05-17 21:20:44 +04:00
|
|
|
|
2006-02-28 00:38:22 +03:00
|
|
|
bool newStyle = false;
|
2008-06-09 23:08:59 +04:00
|
|
|
enum Doing { DoingNone, DoingNames, DoingPaths, DoingPathSuffixes,
|
|
|
|
DoingHints };
|
|
|
|
Doing doing = DoingNames; // assume it starts with a name
|
2006-02-28 00:38:22 +03:00
|
|
|
for (unsigned int j = 1; j < args.size(); ++j)
|
|
|
|
{
|
|
|
|
if(args[j] == "NAMES")
|
|
|
|
{
|
2008-06-09 23:08:59 +04:00
|
|
|
doing = DoingNames;
|
2006-02-28 00:38:22 +03:00
|
|
|
newStyle = true;
|
|
|
|
}
|
|
|
|
else if (args[j] == "PATHS")
|
|
|
|
{
|
2008-06-09 23:08:59 +04:00
|
|
|
doing = DoingPaths;
|
|
|
|
newStyle = true;
|
|
|
|
}
|
|
|
|
else if (args[j] == "HINTS")
|
|
|
|
{
|
|
|
|
doing = DoingHints;
|
2006-02-28 00:38:22 +03:00
|
|
|
newStyle = true;
|
|
|
|
}
|
|
|
|
else if (args[j] == "PATH_SUFFIXES")
|
2006-03-28 23:45:22 +04:00
|
|
|
{
|
2008-06-09 23:08:59 +04:00
|
|
|
doing = DoingPathSuffixes;
|
2006-02-28 00:38:22 +03:00
|
|
|
newStyle = true;
|
|
|
|
}
|
2012-09-24 19:05:10 +04:00
|
|
|
else if (args[j] == "NAMES_PER_DIR")
|
|
|
|
{
|
|
|
|
doing = DoingNone;
|
|
|
|
if(this->NamesPerDirAllowed)
|
|
|
|
{
|
|
|
|
this->NamesPerDir = true;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
this->SetError("does not support NAMES_PER_DIR");
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
}
|
2006-03-28 23:45:22 +04:00
|
|
|
else if (args[j] == "NO_SYSTEM_PATH")
|
2006-02-28 00:38:22 +03:00
|
|
|
{
|
2008-06-09 23:08:59 +04:00
|
|
|
doing = DoingNone;
|
2006-03-17 01:49:16 +03:00
|
|
|
this->NoDefaultPath = true;
|
2006-02-28 00:38:22 +03:00
|
|
|
}
|
2008-01-17 17:02:31 +03:00
|
|
|
else if (this->CheckCommonArgument(args[j]))
|
2006-03-24 22:16:31 +03:00
|
|
|
{
|
2008-06-09 23:08:59 +04:00
|
|
|
doing = DoingNone;
|
2008-06-10 21:22:18 +04:00
|
|
|
// Some common arguments were accidentally supported by CMake
|
|
|
|
// 2.4 and 2.6.0 in the short-hand form of the command, so we
|
|
|
|
// must support it even though it is not documented.
|
ENH: merge CMake-CrossCompileBasic to HEAD
-add a RESULT_VARIABLE to INCLUDE()
-add CMAKE_TOOLCHAIN_FILE for specifiying your (potentially crosscompiling) toolchain
-have TRY_RUN() complain if you try to use it in crosscompiling mode (which were compiled but cannot run on this system)
-use CMAKE_EXECUTABLE_SUFFIX in TRY_RUN(), probably TRY_RUN won't be able to
run the executables if they have a different suffix because they are
probably crosscompiled, but nevertheless it should be able to find them
-make several cmake variables presettable by the user: CMAKE_C/CXX_COMPILER, CMAKE_C/CXX_OUTPUT_EXTENSION, CMAKE_SYSTEM_NAME, CMAKE_SYSTEM_INFO_FILE
-support prefix for GNU toolchains (arm-elf-gcc, arm-elf-ar, arm-elf-strip etc.)
-move ranlib on OSX from the file command to a command in executed in cmake_install.cmake
-add support for stripping during install in cmake_install.cmake
-split out cl.cmake from Windows-cl.cmake, first (very incomplete) step to support MS crosscompiling tools
-remove stdio.h from the simple C program which checks if the compiler works, since this may not exist for some embedded platforms
-create a new CMakeFindBinUtils.cmake which collects the search fro ar, ranlib, strip, ld, link, install_name_tool and other tools like these
-add support for CMAKE_FIND_ROOT_PATH for all FIND_XXX commands, which is a
list of directories which will be prepended to all search directories, right
now as a cmake variable, turning it into a global cmake property may need
some more work
-remove cmTestTestHandler::TryExecutable(), it's unused
-split cmFileCommand::HandleInstall() into slightly smaller functions
Alex
2007-05-17 21:20:44 +04:00
|
|
|
}
|
2008-06-09 23:08:59 +04:00
|
|
|
else if(doing == DoingNames)
|
2006-02-28 00:38:22 +03:00
|
|
|
{
|
2008-06-09 23:08:59 +04:00
|
|
|
this->Names.push_back(args[j]);
|
|
|
|
}
|
|
|
|
else if(doing == DoingPaths)
|
|
|
|
{
|
2014-10-16 00:36:42 +04:00
|
|
|
this->UserGuessArgs.push_back(args[j]);
|
2008-06-09 23:08:59 +04:00
|
|
|
}
|
|
|
|
else if(doing == DoingHints)
|
|
|
|
{
|
2014-10-16 00:36:42 +04:00
|
|
|
this->UserHintsArgs.push_back(args[j]);
|
2008-06-09 23:08:59 +04:00
|
|
|
}
|
|
|
|
else if(doing == DoingPathSuffixes)
|
|
|
|
{
|
|
|
|
this->AddPathSuffix(args[j]);
|
2006-02-28 00:38:22 +03:00
|
|
|
}
|
|
|
|
}
|
2006-03-28 23:45:22 +04:00
|
|
|
|
2015-01-15 02:31:49 +03:00
|
|
|
if(this->VariableDocumentation.empty())
|
2006-02-28 00:38:22 +03:00
|
|
|
{
|
ENH: merge CMake-CrossCompileBasic to HEAD
-add a RESULT_VARIABLE to INCLUDE()
-add CMAKE_TOOLCHAIN_FILE for specifiying your (potentially crosscompiling) toolchain
-have TRY_RUN() complain if you try to use it in crosscompiling mode (which were compiled but cannot run on this system)
-use CMAKE_EXECUTABLE_SUFFIX in TRY_RUN(), probably TRY_RUN won't be able to
run the executables if they have a different suffix because they are
probably crosscompiled, but nevertheless it should be able to find them
-make several cmake variables presettable by the user: CMAKE_C/CXX_COMPILER, CMAKE_C/CXX_OUTPUT_EXTENSION, CMAKE_SYSTEM_NAME, CMAKE_SYSTEM_INFO_FILE
-support prefix for GNU toolchains (arm-elf-gcc, arm-elf-ar, arm-elf-strip etc.)
-move ranlib on OSX from the file command to a command in executed in cmake_install.cmake
-add support for stripping during install in cmake_install.cmake
-split out cl.cmake from Windows-cl.cmake, first (very incomplete) step to support MS crosscompiling tools
-remove stdio.h from the simple C program which checks if the compiler works, since this may not exist for some embedded platforms
-create a new CMakeFindBinUtils.cmake which collects the search fro ar, ranlib, strip, ld, link, install_name_tool and other tools like these
-add support for CMAKE_FIND_ROOT_PATH for all FIND_XXX commands, which is a
list of directories which will be prepended to all search directories, right
now as a cmake variable, turning it into a global cmake property may need
some more work
-remove cmTestTestHandler::TryExecutable(), it's unused
-split cmFileCommand::HandleInstall() into slightly smaller functions
Alex
2007-05-17 21:20:44 +04:00
|
|
|
this->VariableDocumentation = "Where can ";
|
2015-01-15 02:31:49 +03:00
|
|
|
if(this->Names.empty())
|
2006-02-28 00:38:22 +03:00
|
|
|
{
|
|
|
|
this->VariableDocumentation += "the (unknown) library be found";
|
|
|
|
}
|
|
|
|
else if(this->Names.size() == 1)
|
|
|
|
{
|
2012-08-13 21:42:58 +04:00
|
|
|
this->VariableDocumentation += "the "
|
2006-05-10 23:46:45 +04:00
|
|
|
+ this->Names[0] + " library be found";
|
2006-02-28 00:38:22 +03:00
|
|
|
}
|
|
|
|
else
|
2012-08-13 21:42:58 +04:00
|
|
|
{
|
2015-01-15 00:23:41 +03:00
|
|
|
this->VariableDocumentation += "one of the ";
|
|
|
|
this->VariableDocumentation += cmJoin(cmRange(this->Names).retreat(1),
|
|
|
|
", ");
|
2012-08-13 21:42:58 +04:00
|
|
|
this->VariableDocumentation += " or "
|
2006-05-10 23:46:45 +04:00
|
|
|
+ this->Names[this->Names.size() - 1] + " libraries be found";
|
2006-02-28 00:38:22 +03:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// look for old style
|
|
|
|
// FIND_*(VAR name path1 path2 ...)
|
|
|
|
if(!newStyle)
|
|
|
|
{
|
2008-06-10 21:22:18 +04:00
|
|
|
// All the short-hand arguments have been recorded as names.
|
|
|
|
std::vector<std::string> shortArgs = this->Names;
|
2006-03-05 16:38:24 +03:00
|
|
|
this->Names.clear(); // clear out any values in Names
|
2008-06-10 21:22:18 +04:00
|
|
|
this->Names.push_back(shortArgs[0]);
|
2014-11-22 13:00:45 +03:00
|
|
|
this->UserGuessArgs.insert(this->UserGuessArgs.end(),
|
|
|
|
shortArgs.begin() + 1, shortArgs.end());
|
2006-02-28 00:38:22 +03:00
|
|
|
}
|
2008-06-06 02:20:16 +04:00
|
|
|
this->ExpandPaths();
|
2008-01-17 17:02:31 +03:00
|
|
|
|
2011-09-23 22:27:25 +04:00
|
|
|
this->ComputeFinalPaths();
|
2008-06-09 19:57:56 +04:00
|
|
|
|
2006-02-28 00:38:22 +03:00
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
2008-06-06 02:20:16 +04:00
|
|
|
void cmFindBase::ExpandPaths()
|
2006-02-28 00:38:22 +03:00
|
|
|
{
|
2014-10-09 21:52:54 +04:00
|
|
|
if(!this->NoDefaultPath)
|
|
|
|
{
|
|
|
|
if(!this->NoCMakePath)
|
|
|
|
{
|
|
|
|
this->FillCMakeVariablePath();
|
|
|
|
}
|
|
|
|
if(!this->NoCMakeEnvironmentPath)
|
|
|
|
{
|
|
|
|
this->FillCMakeEnvironmentPath();
|
|
|
|
}
|
|
|
|
if(!this->NoSystemEnvironmentPath)
|
|
|
|
{
|
|
|
|
this->FillSystemEnvironmentPath();
|
|
|
|
}
|
|
|
|
if(!this->NoCMakeSystemPath)
|
|
|
|
{
|
|
|
|
this->FillCMakeSystemVariablePath();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
this->FillUserHintsPath();
|
|
|
|
this->FillUserGuessPath();
|
2006-03-30 20:55:19 +04:00
|
|
|
}
|
|
|
|
|
2008-06-06 02:20:16 +04:00
|
|
|
//----------------------------------------------------------------------------
|
2014-10-09 21:52:54 +04:00
|
|
|
void cmFindBase::FillCMakeEnvironmentPath()
|
2008-06-06 02:20:16 +04:00
|
|
|
{
|
2014-10-17 21:07:26 +04:00
|
|
|
cmSearchPath &paths = this->LabeledPaths[PathLabel::CMakeEnvironment];
|
|
|
|
|
2014-10-09 21:52:54 +04:00
|
|
|
// Add CMAKE_*_PATH environment variables
|
|
|
|
std::string var = "CMAKE_";
|
|
|
|
var += this->CMakePathName;
|
|
|
|
var += "_PATH";
|
2014-10-17 21:07:26 +04:00
|
|
|
paths.AddEnvPrefixPath("CMAKE_PREFIX_PATH");
|
|
|
|
paths.AddEnvPath(var);
|
2014-10-09 21:52:54 +04:00
|
|
|
|
|
|
|
if(this->CMakePathName == "PROGRAM")
|
2006-02-28 00:38:22 +03:00
|
|
|
{
|
2014-10-17 21:07:26 +04:00
|
|
|
paths.AddEnvPath("CMAKE_APPBUNDLE_PATH");
|
2014-10-09 21:52:54 +04:00
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
2014-10-17 21:07:26 +04:00
|
|
|
paths.AddEnvPath("CMAKE_FRAMEWORK_PATH");
|
2006-02-28 00:38:22 +03:00
|
|
|
}
|
2014-10-17 21:07:26 +04:00
|
|
|
paths.AddSuffixes(this->SearchPathSuffixes);
|
2006-02-28 00:38:22 +03:00
|
|
|
}
|
|
|
|
|
2008-06-06 02:20:16 +04:00
|
|
|
//----------------------------------------------------------------------------
|
2014-10-09 21:52:54 +04:00
|
|
|
void cmFindBase::FillCMakeVariablePath()
|
2008-06-06 02:20:16 +04:00
|
|
|
{
|
2014-10-17 21:07:26 +04:00
|
|
|
cmSearchPath &paths = this->LabeledPaths[PathLabel::CMake];
|
|
|
|
|
2014-10-09 21:52:54 +04:00
|
|
|
// Add CMake varibles of the same name as the previous environment
|
|
|
|
// varibles CMAKE_*_PATH to be used most of the time with -D
|
|
|
|
// command line options
|
|
|
|
std::string var = "CMAKE_";
|
|
|
|
var += this->CMakePathName;
|
|
|
|
var += "_PATH";
|
2014-10-17 21:07:26 +04:00
|
|
|
paths.AddCMakePrefixPath("CMAKE_PREFIX_PATH");
|
|
|
|
paths.AddCMakePath(var);
|
2014-10-09 21:52:54 +04:00
|
|
|
|
|
|
|
if(this->CMakePathName == "PROGRAM")
|
2007-12-19 18:34:43 +03:00
|
|
|
{
|
2014-10-17 21:07:26 +04:00
|
|
|
paths.AddCMakePath("CMAKE_APPBUNDLE_PATH");
|
2014-10-09 21:52:54 +04:00
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
2014-10-17 21:07:26 +04:00
|
|
|
paths.AddCMakePath("CMAKE_FRAMEWORK_PATH");
|
2007-12-19 18:34:43 +03:00
|
|
|
}
|
2014-10-17 21:07:26 +04:00
|
|
|
paths.AddSuffixes(this->SearchPathSuffixes);
|
2006-02-28 00:38:22 +03:00
|
|
|
}
|
|
|
|
|
2008-06-06 02:20:16 +04:00
|
|
|
//----------------------------------------------------------------------------
|
2014-10-09 21:52:54 +04:00
|
|
|
void cmFindBase::FillSystemEnvironmentPath()
|
2006-02-28 00:38:22 +03:00
|
|
|
{
|
2014-10-17 21:07:26 +04:00
|
|
|
cmSearchPath &paths = this->LabeledPaths[PathLabel::SystemEnvironment];
|
|
|
|
|
2014-10-09 21:52:54 +04:00
|
|
|
// Add LIB or INCLUDE
|
|
|
|
if(!this->EnvironmentPath.empty())
|
2008-05-27 22:47:46 +04:00
|
|
|
{
|
2014-10-17 21:07:26 +04:00
|
|
|
paths.AddEnvPath(this->EnvironmentPath);
|
2015-02-18 18:54:45 +03:00
|
|
|
paths.AddEnvPrefixPath("PATH", true);
|
2008-05-27 22:47:46 +04:00
|
|
|
}
|
2014-10-09 21:52:54 +04:00
|
|
|
// Add PATH
|
2014-10-17 21:07:26 +04:00
|
|
|
paths.AddEnvPath("PATH");
|
|
|
|
paths.AddSuffixes(this->SearchPathSuffixes);
|
2008-06-06 02:20:16 +04:00
|
|
|
}
|
|
|
|
|
|
|
|
//----------------------------------------------------------------------------
|
2014-10-09 21:52:54 +04:00
|
|
|
void cmFindBase::FillCMakeSystemVariablePath()
|
2008-06-06 02:20:16 +04:00
|
|
|
{
|
2014-10-17 21:07:26 +04:00
|
|
|
cmSearchPath &paths = this->LabeledPaths[PathLabel::CMakeSystem];
|
|
|
|
|
2014-10-09 21:52:54 +04:00
|
|
|
std::string var = "CMAKE_SYSTEM_";
|
|
|
|
var += this->CMakePathName;
|
|
|
|
var += "_PATH";
|
2014-10-17 21:07:26 +04:00
|
|
|
paths.AddCMakePrefixPath("CMAKE_SYSTEM_PREFIX_PATH");
|
|
|
|
paths.AddCMakePath(var);
|
2014-10-09 21:52:54 +04:00
|
|
|
|
|
|
|
if(this->CMakePathName == "PROGRAM")
|
2006-02-28 00:38:22 +03:00
|
|
|
{
|
2014-10-17 21:07:26 +04:00
|
|
|
paths.AddCMakePath("CMAKE_SYSTEM_APPBUNDLE_PATH");
|
2014-10-09 21:52:54 +04:00
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
2014-10-17 21:07:26 +04:00
|
|
|
paths.AddCMakePath("CMAKE_SYSTEM_FRAMEWORK_PATH");
|
2006-02-28 00:38:22 +03:00
|
|
|
}
|
2014-10-17 21:07:26 +04:00
|
|
|
paths.AddSuffixes(this->SearchPathSuffixes);
|
2008-06-06 02:20:16 +04:00
|
|
|
}
|
|
|
|
|
|
|
|
//----------------------------------------------------------------------------
|
2014-10-09 21:52:54 +04:00
|
|
|
void cmFindBase::FillUserHintsPath()
|
2008-06-09 23:08:59 +04:00
|
|
|
{
|
2014-10-17 21:07:26 +04:00
|
|
|
cmSearchPath &paths = this->LabeledPaths[PathLabel::Hints];
|
|
|
|
|
2014-10-16 00:36:42 +04:00
|
|
|
for(std::vector<std::string>::const_iterator p = this->UserHintsArgs.begin();
|
|
|
|
p != this->UserHintsArgs.end(); ++p)
|
|
|
|
{
|
2014-10-17 21:07:26 +04:00
|
|
|
paths.AddUserPath(*p);
|
2014-10-16 00:36:42 +04:00
|
|
|
}
|
2014-10-17 21:07:26 +04:00
|
|
|
paths.AddSuffixes(this->SearchPathSuffixes);
|
2008-06-09 23:08:59 +04:00
|
|
|
}
|
|
|
|
|
|
|
|
//----------------------------------------------------------------------------
|
2014-10-09 21:52:54 +04:00
|
|
|
void cmFindBase::FillUserGuessPath()
|
2008-06-09 23:08:59 +04:00
|
|
|
{
|
2014-10-17 21:07:26 +04:00
|
|
|
cmSearchPath &paths = this->LabeledPaths[PathLabel::Guess];
|
|
|
|
|
2014-10-16 00:36:42 +04:00
|
|
|
for(std::vector<std::string>::const_iterator p = this->UserGuessArgs.begin();
|
|
|
|
p != this->UserGuessArgs.end(); ++p)
|
2006-02-28 00:38:22 +03:00
|
|
|
{
|
2014-10-17 21:07:26 +04:00
|
|
|
paths.AddUserPath(*p);
|
2006-02-28 00:38:22 +03:00
|
|
|
}
|
2014-10-17 21:07:26 +04:00
|
|
|
paths.AddSuffixes(this->SearchPathSuffixes);
|
2006-02-28 00:38:22 +03:00
|
|
|
}
|
|
|
|
|
2014-10-16 00:36:42 +04:00
|
|
|
//----------------------------------------------------------------------------
|
2006-02-28 00:38:22 +03:00
|
|
|
void cmFindBase::PrintFindStuff()
|
|
|
|
{
|
2006-03-29 22:33:49 +04:00
|
|
|
std::cerr << "SearchFrameworkLast: " << this->SearchFrameworkLast << "\n";
|
|
|
|
std::cerr << "SearchFrameworkOnly: " << this->SearchFrameworkOnly << "\n";
|
|
|
|
std::cerr << "SearchFrameworkFirst: " << this->SearchFrameworkFirst << "\n";
|
2006-04-13 19:00:52 +04:00
|
|
|
std::cerr << "SearchAppBundleLast: " << this->SearchAppBundleLast << "\n";
|
|
|
|
std::cerr << "SearchAppBundleOnly: " << this->SearchAppBundleOnly << "\n";
|
|
|
|
std::cerr << "SearchAppBundleFirst: " << this->SearchAppBundleFirst << "\n";
|
2006-02-28 00:38:22 +03:00
|
|
|
std::cerr << "VariableName " << this->VariableName << "\n";
|
2012-08-13 21:42:58 +04:00
|
|
|
std::cerr << "VariableDocumentation "
|
2006-05-10 23:46:45 +04:00
|
|
|
<< this->VariableDocumentation << "\n";
|
2006-03-17 01:49:16 +03:00
|
|
|
std::cerr << "NoDefaultPath " << this->NoDefaultPath << "\n";
|
2012-08-13 21:42:58 +04:00
|
|
|
std::cerr << "NoCMakeEnvironmentPath "
|
2006-05-10 23:46:45 +04:00
|
|
|
<< this->NoCMakeEnvironmentPath << "\n";
|
2006-03-24 22:16:31 +03:00
|
|
|
std::cerr << "NoCMakePath " << this->NoCMakePath << "\n";
|
2012-08-13 21:42:58 +04:00
|
|
|
std::cerr << "NoSystemEnvironmentPath "
|
2006-05-10 23:46:45 +04:00
|
|
|
<< this->NoSystemEnvironmentPath << "\n";
|
2006-03-24 22:16:31 +03:00
|
|
|
std::cerr << "NoCMakeSystemPath " << this->NoCMakeSystemPath << "\n";
|
2006-02-28 00:38:22 +03:00
|
|
|
std::cerr << "EnvironmentPath " << this->EnvironmentPath << "\n";
|
|
|
|
std::cerr << "CMakePathName " << this->CMakePathName << "\n";
|
2015-02-12 22:53:43 +03:00
|
|
|
std::cerr << "Names " << cmJoin(this->Names, " ") << "\n";
|
2006-02-28 00:38:22 +03:00
|
|
|
std::cerr << "\n";
|
|
|
|
std::cerr << "SearchPathSuffixes ";
|
2015-02-12 22:53:43 +03:00
|
|
|
std::cerr << cmJoin(this->SearchPathSuffixes, "\n") << "\n";
|
2006-02-28 00:38:22 +03:00
|
|
|
std::cerr << "SearchPaths\n";
|
2015-02-19 00:14:26 +03:00
|
|
|
std::cerr << cmWrap("[", this->SearchPaths, "]", "\n") << "\n";
|
2006-02-28 00:38:22 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
bool cmFindBase::CheckForVariableInCache()
|
|
|
|
{
|
2006-07-18 23:21:26 +04:00
|
|
|
if(const char* cacheValue =
|
2014-03-11 03:04:11 +04:00
|
|
|
this->Makefile->GetDefinition(this->VariableName))
|
2006-02-28 00:38:22 +03:00
|
|
|
{
|
2015-04-06 11:52:45 +03:00
|
|
|
cmState* state = this->Makefile->GetState();
|
|
|
|
const char* cacheEntry = state->GetCacheEntryValue(this->VariableName);
|
2006-07-18 23:21:26 +04:00
|
|
|
bool found = !cmSystemTools::IsNOTFOUND(cacheValue);
|
2015-04-05 11:48:04 +03:00
|
|
|
bool cached = cacheEntry ? true : false;
|
2006-07-18 23:21:26 +04:00
|
|
|
if(found)
|
|
|
|
{
|
|
|
|
// If the user specifies the entry on the command line without a
|
|
|
|
// type we should add the type and docstring but keep the
|
|
|
|
// original value. Tell the subclass implementations to do
|
|
|
|
// this.
|
2015-04-06 11:52:45 +03:00
|
|
|
if(cached && state->GetCacheEntryType(this->VariableName)
|
2015-04-07 23:45:54 +03:00
|
|
|
== cmState::UNINITIALIZED)
|
2006-07-18 23:21:26 +04:00
|
|
|
{
|
|
|
|
this->AlreadyInCacheWithoutMetaInfo = true;
|
|
|
|
}
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
else if(cached)
|
2006-02-28 00:38:22 +03:00
|
|
|
{
|
2015-04-06 11:52:45 +03:00
|
|
|
const char* hs = state->GetCacheEntryProperty(this->VariableName,
|
2015-04-05 11:48:04 +03:00
|
|
|
"HELPSTRING");
|
2006-02-28 00:38:22 +03:00
|
|
|
this->VariableDocumentation = hs?hs:"(none)";
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return false;
|
|
|
|
}
|