2009-09-28 19:43:28 +04:00
|
|
|
/*============================================================================
|
|
|
|
CMake - Cross Platform Makefile Generator
|
|
|
|
Copyright 2000-2009 Kitware, Inc., Insight Software Consortium
|
2008-01-17 17:02:31 +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.
|
2008-01-17 17:02:31 +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.
|
|
|
|
============================================================================*/
|
2008-01-17 17:02:31 +03:00
|
|
|
#ifndef cmFindCommon_h
|
|
|
|
#define cmFindCommon_h
|
|
|
|
|
|
|
|
#include "cmCommand.h"
|
|
|
|
|
|
|
|
/** \class cmFindCommon
|
|
|
|
* \brief Base class for FIND_XXX implementations.
|
|
|
|
*
|
|
|
|
* cmFindCommon is a parent class for cmFindBase,
|
|
|
|
* cmFindProgramCommand, cmFindPathCommand, cmFindLibraryCommand,
|
|
|
|
* cmFindFileCommand, and cmFindPackageCommand.
|
|
|
|
*/
|
|
|
|
class cmFindCommon : public cmCommand
|
|
|
|
{
|
|
|
|
public:
|
|
|
|
cmFindCommon();
|
|
|
|
~cmFindCommon();
|
|
|
|
cmTypeMacro(cmFindCommon, cmCommand);
|
|
|
|
|
|
|
|
protected:
|
|
|
|
|
|
|
|
enum RootPathMode { RootPathModeBoth,
|
|
|
|
RootPathModeOnlyRootPath,
|
|
|
|
RootPathModeNoRootPath };
|
|
|
|
|
|
|
|
enum PathType { FullPath, CMakePath, EnvPath };
|
|
|
|
|
|
|
|
/** Place a set of search paths under the search roots. */
|
|
|
|
void RerootPaths(std::vector<std::string>& paths);
|
|
|
|
|
2010-08-13 02:20:47 +04:00
|
|
|
/** Get ignored paths from CMAKE_[SYSTEM_]IGNORE_path variables. */
|
|
|
|
void GetIgnoredPaths(std::vector<std::string>& ignore);
|
|
|
|
void GetIgnoredPaths(std::set<std::string>& ignore);
|
|
|
|
|
|
|
|
/** Remove paths in the ignore set from the supplied vector. */
|
|
|
|
void FilterPaths(std::vector<std::string>& paths,
|
|
|
|
const std::set<std::string>& ignore);
|
|
|
|
|
2011-09-23 22:27:25 +04:00
|
|
|
/** Compute final search path list (reroot + trailing slash). */
|
|
|
|
void ComputeFinalPaths();
|
2008-06-09 19:57:56 +04:00
|
|
|
|
2008-01-17 17:02:31 +03:00
|
|
|
/** Compute the current default root path mode. */
|
|
|
|
void SelectDefaultRootPathMode();
|
|
|
|
|
|
|
|
/** Compute the current default bundle/framework search policy. */
|
|
|
|
void SelectDefaultMacMode();
|
|
|
|
|
2014-02-10 09:21:34 +04:00
|
|
|
std::string CMakePathName;
|
2008-01-17 17:02:31 +03:00
|
|
|
RootPathMode FindRootPathMode;
|
|
|
|
|
|
|
|
bool CheckCommonArgument(std::string const& arg);
|
|
|
|
void AddPathSuffix(std::string const& arg);
|
2008-06-09 23:08:59 +04:00
|
|
|
void AddUserPath(std::string const& p,
|
|
|
|
std::vector<std::string>& paths);
|
2014-02-05 01:06:56 +04:00
|
|
|
void AddCMakePath(const std::string& variable);
|
2008-06-06 02:20:16 +04:00
|
|
|
void AddEnvPath(const char* variable);
|
|
|
|
void AddPathsInternal(std::vector<std::string> const& in_paths,
|
|
|
|
PathType pathType);
|
|
|
|
void AddPathInternal(std::string const& in_path, PathType pathType);
|
2008-01-17 17:02:31 +03:00
|
|
|
|
2010-05-01 16:29:13 +04:00
|
|
|
void SetMakefile(cmMakefile* makefile);
|
|
|
|
|
2008-01-17 17:02:31 +03:00
|
|
|
bool NoDefaultPath;
|
|
|
|
bool NoCMakePath;
|
|
|
|
bool NoCMakeEnvironmentPath;
|
|
|
|
bool NoSystemEnvironmentPath;
|
|
|
|
bool NoCMakeSystemPath;
|
|
|
|
|
|
|
|
std::vector<std::string> SearchPathSuffixes;
|
2008-06-06 02:20:16 +04:00
|
|
|
std::vector<std::string> UserPaths;
|
2008-06-09 23:08:59 +04:00
|
|
|
std::vector<std::string> UserHints;
|
2008-06-06 02:20:16 +04:00
|
|
|
std::vector<std::string> SearchPaths;
|
2014-02-10 09:21:34 +04:00
|
|
|
std::set<std::string> SearchPathsEmitted;
|
2008-01-17 17:02:31 +03:00
|
|
|
|
|
|
|
bool SearchFrameworkFirst;
|
|
|
|
bool SearchFrameworkOnly;
|
|
|
|
bool SearchFrameworkLast;
|
|
|
|
|
|
|
|
bool SearchAppBundleFirst;
|
|
|
|
bool SearchAppBundleOnly;
|
|
|
|
bool SearchAppBundleLast;
|
|
|
|
};
|
|
|
|
|
|
|
|
#endif
|