cmExecProgramCommand.h 3.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100
  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 cmExecProgramCommand_h
  14. #define cmExecProgramCommand_h
  15. #include "cmCommand.h"
  16. /** \class cmExecProgramCommand
  17. * \brief Command that adds a target to the build system.
  18. *
  19. * cmExecProgramCommand adds an extra target to the build system.
  20. * This is useful when you would like to add special
  21. * targets like "install,", "clean," and so on.
  22. */
  23. class cmExecProgramCommand : public cmCommand
  24. {
  25. public:
  26. /**
  27. * This is a virtual constructor for the command.
  28. */
  29. virtual cmCommand* Clone()
  30. {
  31. return new cmExecProgramCommand;
  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. cmExecutionStatus &status);
  39. /**
  40. * The name of the command as specified in CMakeList.txt.
  41. */
  42. virtual const char* GetName()
  43. {return "exec_program";}
  44. /**
  45. * This determines if the command is invoked when in script mode.
  46. */
  47. virtual bool IsScriptable() { return true; }
  48. /**
  49. * Succinct documentation.
  50. */
  51. virtual const char* GetTerseDocumentation()
  52. {
  53. return
  54. "Deprecated. Use the execute_process() command instead.";
  55. }
  56. /**
  57. * More documentation.
  58. */
  59. virtual const char* GetFullDocumentation()
  60. {
  61. return
  62. "Run an executable program during the processing of the CMakeList.txt"
  63. " file.\n"
  64. " exec_program(Executable [directory in which to run]\n"
  65. " [ARGS <arguments to executable>]\n"
  66. " [OUTPUT_VARIABLE <var>]\n"
  67. " [RETURN_VALUE <var>])\n"
  68. "The executable is run in the optionally specified directory. The "
  69. "executable can include arguments if it is double quoted, but it is "
  70. "better to use the optional ARGS argument to specify arguments to the "
  71. "program. This is because cmake will then be able to escape spaces "
  72. "in the executable path. An optional argument OUTPUT_VARIABLE "
  73. "specifies a variable in which to store the output. "
  74. "To capture the return value of the execution, provide a RETURN_VALUE. "
  75. "If OUTPUT_VARIABLE is specified, then no output will go to the "
  76. "stdout/stderr of the console running cmake.\n"
  77. ;
  78. }
  79. /** This command is kept for compatibility with older CMake versions. */
  80. virtual bool IsDiscouraged()
  81. {
  82. return true;
  83. }
  84. cmTypeMacro(cmExecProgramCommand, cmCommand);
  85. };
  86. #endif