cmFindFileCommand.h 2.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687
  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 is invoked when in script mode.
  41. */
  42. virtual bool IsScriptable() { return true; }
  43. /**
  44. * The name of the command as specified in CMakeList.txt.
  45. */
  46. virtual const char* GetName() { return "FIND_FILE";}
  47. /**
  48. * Succinct documentation.
  49. */
  50. virtual const char* GetTerseDocumentation()
  51. {
  52. return "Find the full path to a file.";
  53. }
  54. /**
  55. * More documentation.
  56. */
  57. virtual const char* GetFullDocumentation()
  58. {
  59. return
  60. " FIND_FILE(<VAR> fileName path1 [path2 ...]\n"
  61. " [DOC \"docstring\"])\n"
  62. "Find the full path to a file named by fileName. Paths "
  63. "are searched in the order specified. A cache entry named by "
  64. "<VAR> is created to store the result. If the file is not "
  65. "found, the result will be <VAR>-NOTFOUND. If DOC is specified "
  66. "then the next argument is treated as a documentation string for "
  67. "the cache entry <VAR>. Note that since executables can have "
  68. "different extensions on different platforms, FIND_PROGRAM "
  69. "should be used instead of FIND_FILE when looking for them.";
  70. }
  71. cmTypeMacro(cmFindFileCommand, cmCommand);
  72. };
  73. #endif