2001-04-26 17:38:31 +04:00
|
|
|
/*=========================================================================
|
|
|
|
|
2002-10-24 02:03:27 +04:00
|
|
|
Program: CMake - Cross-Platform Makefile Generator
|
2001-04-26 17:38:31 +04:00
|
|
|
Module: $RCSfile$
|
|
|
|
Language: C++
|
|
|
|
Date: $Date$
|
|
|
|
Version: $Revision$
|
|
|
|
|
2002-10-24 02:03:27 +04:00
|
|
|
Copyright (c) 2002 Kitware, Inc., Insight Consortium. All rights reserved.
|
|
|
|
See Copyright.txt or http://www.cmake.org/HTML/Copyright.html for details.
|
2001-04-26 17:38:31 +04:00
|
|
|
|
2002-01-21 23:30:43 +03:00
|
|
|
This software is distributed WITHOUT ANY WARRANTY; without even
|
|
|
|
the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR
|
|
|
|
PURPOSE. See the above copyright notices for more information.
|
2001-04-26 17:38:31 +04:00
|
|
|
|
|
|
|
=========================================================================*/
|
|
|
|
#ifndef cmFindPathCommand_h
|
|
|
|
#define cmFindPathCommand_h
|
|
|
|
|
|
|
|
#include "cmCommand.h"
|
|
|
|
|
|
|
|
|
|
|
|
/** \class cmFindPathCommand
|
|
|
|
* \brief Define a command to search for a library.
|
|
|
|
*
|
|
|
|
* cmFindPathCommand is used to define a CMake variable
|
|
|
|
* that specifies a library. The command searches for a given
|
|
|
|
* file in a list of directories.
|
|
|
|
*/
|
|
|
|
class cmFindPathCommand : public cmCommand
|
|
|
|
{
|
|
|
|
public:
|
|
|
|
/**
|
|
|
|
* This is a virtual constructor for the command.
|
|
|
|
*/
|
|
|
|
virtual cmCommand* Clone()
|
|
|
|
{
|
|
|
|
return new cmFindPathCommand;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* This is called when the command is first encountered in
|
|
|
|
* the CMakeLists.txt file.
|
|
|
|
*/
|
2001-09-20 23:08:30 +04:00
|
|
|
virtual bool InitialPass(std::vector<std::string> const& args);
|
2001-04-26 17:38:31 +04:00
|
|
|
|
2004-02-23 06:07:02 +03:00
|
|
|
/**
|
|
|
|
* This determines if the command is invoked when in script mode.
|
|
|
|
*/
|
|
|
|
virtual bool IsScriptable() { return true; }
|
|
|
|
|
2001-04-26 17:38:31 +04:00
|
|
|
/**
|
|
|
|
* The name of the command as specified in CMakeList.txt.
|
|
|
|
*/
|
|
|
|
virtual const char* GetName() {return "FIND_PATH";}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Succinct documentation.
|
|
|
|
*/
|
|
|
|
virtual const char* GetTerseDocumentation()
|
|
|
|
{
|
2003-02-15 02:47:16 +03:00
|
|
|
return "Find the directory containing a file.";
|
2001-04-26 17:38:31 +04:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* More documentation.
|
|
|
|
*/
|
|
|
|
virtual const char* GetFullDocumentation()
|
|
|
|
{
|
|
|
|
return
|
2003-11-13 21:51:18 +03:00
|
|
|
" FIND_PATH(<VAR> fileName path1 [path2 ...]\n"
|
|
|
|
" [DOC \"docstring\"])\n"
|
|
|
|
"Find the directory containing a file named by fileName. Paths "
|
|
|
|
"are searched in the order specified. A cache entry named by "
|
|
|
|
"<VAR> is created to store the result. If the file is not "
|
|
|
|
"found, the result will be <VAR>-NOTFOUND. If DOC is specified "
|
|
|
|
"then the next argument is treated as a documentation string for "
|
2004-04-22 21:24:20 +04:00
|
|
|
"the cache entry <VAR>. The environment variable CMAKE_INCLUDE_PATH "
|
|
|
|
"is searched as well as the PATH variable.\n";
|
2001-04-26 17:38:31 +04:00
|
|
|
}
|
2005-12-31 05:54:26 +03:00
|
|
|
cmStdString FindHeaderInFrameworks( std::vector<std::string> path,
|
|
|
|
const char* var, const char* file);
|
|
|
|
|
2001-04-26 17:38:31 +04:00
|
|
|
cmTypeMacro(cmFindPathCommand, cmCommand);
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
#endif
|