cmFindFileCommand.h 2.8 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394
  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 cmFindFileCommand_h
  14. #define cmFindFileCommand_h
  15. #include "cmCommand.h"
  16. /** \class cmFindFileCommand
  17. * \brief Define a command to search for an executable program.
  18. *
  19. * cmFindFileCommand is used to define a CMake variable
  20. * that specifies an executable program. The command searches
  21. * in the current path (e.g., PATH environment variable) for
  22. * an executable that matches one of the supplied names.
  23. */
  24. class cmFindFileCommand : public cmCommand
  25. {
  26. public:
  27. /**
  28. * This is a virtual constructor for the command.
  29. */
  30. virtual cmCommand* Clone()
  31. {
  32. return new cmFindFileCommand;
  33. }
  34. /**
  35. * This is called when the command is first encountered in
  36. * the CMakeLists.txt file.
  37. */
  38. virtual bool InitialPass(std::vector<std::string> const& args);
  39. /**
  40. * This determines if the command gets propagated down
  41. * to makefiles located in subdirectories.
  42. */
  43. virtual bool IsInherited() { return false; }
  44. /**
  45. * This determines if the command is invoked when in script mode.
  46. */
  47. virtual bool IsScriptable() { return true; }
  48. /**
  49. * The name of the command as specified in CMakeList.txt.
  50. */
  51. virtual const char* GetName() { return "FIND_FILE";}
  52. /**
  53. * Succinct documentation.
  54. */
  55. virtual const char* GetTerseDocumentation()
  56. {
  57. return "Find the full path to a file.";
  58. }
  59. /**
  60. * More documentation.
  61. */
  62. virtual const char* GetFullDocumentation()
  63. {
  64. return
  65. " FIND_FILE(<VAR> fileName path1 [path2 ...]\n"
  66. " [DOC \"docstring\"])\n"
  67. "Find the full path to a file named by fileName. Paths "
  68. "are searched in the order specified. A cache entry named by "
  69. "<VAR> is created to store the result. If the file is not "
  70. "found, the result will be <VAR>-NOTFOUND. If DOC is specified "
  71. "then the next argument is treated as a documentation string for "
  72. "the cache entry <VAR>. Note that since executables can have "
  73. "different extensions on different platforms, FIND_PROGRAM "
  74. "should be used instead of FIND_FILE when looking for them.";
  75. }
  76. cmTypeMacro(cmFindFileCommand, cmCommand);
  77. };
  78. #endif