1
0

cmFindPathCommand.h 2.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293
  1. /*=========================================================================
  2. Program: CMake - Cross-Platform Makefile Generator
  3. Module: $RCSfile$
  4. Language: C++
  5. Date: $Date$
  6. Version: $Revision$
  7. Copyright (c) 2002 Kitware, Inc., Insight Consortium. All rights reserved.
  8. See Copyright.txt or http://www.cmake.org/HTML/Copyright.html for details.
  9. This software is distributed WITHOUT ANY WARRANTY; without even
  10. the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR
  11. PURPOSE. See the above copyright notices for more information.
  12. =========================================================================*/
  13. #ifndef cmFindPathCommand_h
  14. #define cmFindPathCommand_h
  15. #include "cmCommand.h"
  16. /** \class cmFindPathCommand
  17. * \brief Define a command to search for a library.
  18. *
  19. * cmFindPathCommand is used to define a CMake variable
  20. * that specifies a library. The command searches for a given
  21. * file in a list of directories.
  22. */
  23. class cmFindPathCommand : public cmCommand
  24. {
  25. public:
  26. /**
  27. * This is a virtual constructor for the command.
  28. */
  29. virtual cmCommand* Clone()
  30. {
  31. return new cmFindPathCommand;
  32. }
  33. /**
  34. * This is called when the command is first encountered in
  35. * the CMakeLists.txt file.
  36. */
  37. virtual bool InitialPass(std::vector<std::string> const& args);
  38. /**
  39. * This determines if the command gets propagated down
  40. * to makefiles located in subdirectories.
  41. */
  42. virtual bool IsInherited() {return false;}
  43. /**
  44. * This determines if the command is invoked when in script mode.
  45. */
  46. virtual bool IsScriptable() { return true; }
  47. /**
  48. * The name of the command as specified in CMakeList.txt.
  49. */
  50. virtual const char* GetName() {return "FIND_PATH";}
  51. /**
  52. * Succinct documentation.
  53. */
  54. virtual const char* GetTerseDocumentation()
  55. {
  56. return "Find the directory containing a file.";
  57. }
  58. /**
  59. * More documentation.
  60. */
  61. virtual const char* GetFullDocumentation()
  62. {
  63. return
  64. " FIND_PATH(<VAR> fileName path1 [path2 ...]\n"
  65. " [DOC \"docstring\"])\n"
  66. "Find the directory containing a file named by fileName. Paths "
  67. "are searched in the order specified. A cache entry named by "
  68. "<VAR> is created to store the result. If the file is not "
  69. "found, the result will be <VAR>-NOTFOUND. If DOC is specified "
  70. "then the next argument is treated as a documentation string for "
  71. "the cache entry <VAR>. The environment variable CMAKE_INCLUDE_PATH "
  72. "is searched as well as the PATH variable.\n";
  73. }
  74. cmTypeMacro(cmFindPathCommand, cmCommand);
  75. };
  76. #endif