Resync
[CMakeLuaTailorHgBridge.git] / CMakeLua / Source / cmFindPathCommand.h
blob5bf39cd3c8cb042ba8ea7bac2ce2fa0ad2fe2e51
1 /*=========================================================================
3 Program: CMake - Cross-Platform Makefile Generator
4 Module: $RCSfile: cmFindPathCommand.h,v $
5 Language: C++
6 <<<<<<< cmFindPathCommand.h
7 Date: $Date: 2008/01/23 15:27:59 $
8 Version: $Revision: 1.18 $
9 =======
10 Date: $Date: 2008-06-09 15:58:29 $
11 Version: $Revision: 1.19 $
12 >>>>>>> 1.19
14 Copyright (c) 2002 Kitware, Inc., Insight Consortium. All rights reserved.
15 See Copyright.txt or http://www.cmake.org/HTML/Copyright.html for details.
17 This software is distributed WITHOUT ANY WARRANTY; without even
18 the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR
19 PURPOSE. See the above copyright notices for more information.
21 =========================================================================*/
22 #ifndef cmFindPathCommand_h
23 #define cmFindPathCommand_h
25 #include "cmFindBase.h"
28 /** \class cmFindPathCommand
29 * \brief Define a command to search for a library.
31 * cmFindPathCommand is used to define a CMake variable
32 * that specifies a library. The command searches for a given
33 * file in a list of directories.
35 class cmFindPathCommand : public cmFindBase
37 public:
38 cmFindPathCommand();
39 /**
40 * This is a virtual constructor for the command.
42 virtual cmCommand* Clone()
44 return new cmFindPathCommand;
47 /**
48 * This is called when the command is first encountered in
49 * the CMakeLists.txt file.
51 virtual bool InitialPass(std::vector<std::string> const& args,
52 cmExecutionStatus &status);
54 /**
55 * This determines if the command is invoked when in script mode.
57 virtual bool IsScriptable() { return true; }
59 /**
60 * The name of the command as specified in CMakeList.txt.
62 virtual const char* GetName() {return "find_path";}
64 /**
65 * Succinct documentation.
67 virtual const char* GetTerseDocumentation()
69 return "Find the directory containing a file.";
72 virtual const char* GetFullDocumentation();
73 cmTypeMacro(cmFindPathCommand, cmFindBase);
74 bool IncludeFileInPath;
75 bool ExtraDocAdded;
76 private:
77 std::string FindHeaderInFramework(std::string const& file,
78 std::string const& dir);
79 std::string FindHeader();
80 std::string FindNormalHeader();
81 std::string FindFrameworkHeader();
86 #endif