mirror of
https://github.com/reactos/CMake.git
synced 2024-12-14 23:29:57 +00:00
96afb12087
This converts the CMake license to a pure 3-clause OSI-approved BSD License. We drop the previous license clause requiring modified versions to be plainly marked. We also update the CMake copyright to cover the full development time range.
90 lines
2.7 KiB
C++
90 lines
2.7 KiB
C++
/*============================================================================
|
|
CMake - Cross Platform Makefile Generator
|
|
Copyright 2000-2009 Kitware, Inc., Insight Software Consortium
|
|
|
|
Distributed under the OSI-approved BSD License (the "License");
|
|
see accompanying file Copyright.txt for details.
|
|
|
|
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.
|
|
============================================================================*/
|
|
#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);
|
|
|
|
/** Add trailing slashes to all search paths. */
|
|
void AddTrailingSlashes(std::vector<std::string>& paths);
|
|
|
|
/** Compute the current default root path mode. */
|
|
void SelectDefaultRootPathMode();
|
|
|
|
/** Compute the current default bundle/framework search policy. */
|
|
void SelectDefaultMacMode();
|
|
|
|
cmStdString CMakePathName;
|
|
RootPathMode FindRootPathMode;
|
|
|
|
bool CheckCommonArgument(std::string const& arg);
|
|
void AddPathSuffix(std::string const& arg);
|
|
void AddUserPath(std::string const& p,
|
|
std::vector<std::string>& paths);
|
|
void AddCMakePath(const char* variable);
|
|
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);
|
|
|
|
bool NoDefaultPath;
|
|
bool NoCMakePath;
|
|
bool NoCMakeEnvironmentPath;
|
|
bool NoSystemEnvironmentPath;
|
|
bool NoCMakeSystemPath;
|
|
|
|
std::vector<std::string> SearchPathSuffixes;
|
|
std::vector<std::string> UserPaths;
|
|
std::vector<std::string> UserHints;
|
|
std::vector<std::string> SearchPaths;
|
|
std::set<cmStdString> SearchPathsEmitted;
|
|
|
|
std::string GenericDocumentationMacPolicy;
|
|
std::string GenericDocumentationRootPath;
|
|
std::string GenericDocumentationPathsOrder;
|
|
|
|
bool SearchFrameworkFirst;
|
|
bool SearchFrameworkOnly;
|
|
bool SearchFrameworkLast;
|
|
|
|
bool SearchAppBundleFirst;
|
|
bool SearchAppBundleOnly;
|
|
bool SearchAppBundleLast;
|
|
};
|
|
|
|
#endif
|