2001-04-26 09:38:31 -04:00
|
|
|
/*=========================================================================
|
|
|
|
|
2002-10-23 18:03:27 -04:00
|
|
|
Program: CMake - Cross-Platform Makefile Generator
|
2001-04-26 09:38:31 -04:00
|
|
|
Module: $RCSfile$
|
|
|
|
Language: C++
|
|
|
|
Date: $Date$
|
|
|
|
Version: $Revision$
|
|
|
|
|
2002-10-23 18: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 09:38:31 -04:00
|
|
|
|
2002-01-21 15:30:43 -05: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 09:38:31 -04:00
|
|
|
|
|
|
|
=========================================================================*/
|
|
|
|
#ifndef cmFindPathCommand_h
|
|
|
|
#define cmFindPathCommand_h
|
|
|
|
|
2006-03-02 13:30:22 -05:00
|
|
|
#include "cmFindBase.h"
|
2001-04-26 09:38:31 -04:00
|
|
|
|
|
|
|
|
|
|
|
/** \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.
|
|
|
|
*/
|
2006-03-02 13:30:22 -05:00
|
|
|
class cmFindPathCommand : public cmFindBase
|
2001-04-26 09:38:31 -04:00
|
|
|
{
|
|
|
|
public:
|
2006-03-02 13:30:22 -05:00
|
|
|
cmFindPathCommand();
|
2001-04-26 09:38:31 -04:00
|
|
|
/**
|
|
|
|
* 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 15:08:30 -04:00
|
|
|
virtual bool InitialPass(std::vector<std::string> const& args);
|
2001-04-26 09:38:31 -04:00
|
|
|
|
2004-02-22 22:07:02 -05:00
|
|
|
/**
|
|
|
|
* This determines if the command is invoked when in script mode.
|
|
|
|
*/
|
|
|
|
virtual bool IsScriptable() { return true; }
|
|
|
|
|
2001-04-26 09: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-14 18:47:16 -05:00
|
|
|
return "Find the directory containing a file.";
|
2001-04-26 09:38:31 -04:00
|
|
|
}
|
2005-12-30 21:54:26 -05:00
|
|
|
|
2006-03-02 13:30:22 -05:00
|
|
|
std::string FindHeaderInFramework( std::string& file,
|
|
|
|
std::string& dir);
|
|
|
|
virtual const char* GetFullDocumentation();
|
|
|
|
cmTypeMacro(cmFindPathCommand, cmFindBase);
|
|
|
|
bool IncludeFileInPath;
|
|
|
|
bool ExtraDocAdded;
|
2001-04-26 09:38:31 -04:00
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
#endif
|