You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

99 lines
3.0 KiB

20 years ago
20 years ago
20 years ago
  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. /**
  39. * The name of the command as specified in CMakeList.txt.
  40. */
  41. virtual const char* GetName()
  42. {return "exec_program";}
  43. /**
  44. * This determines if the command is invoked when in script mode.
  45. */
  46. virtual bool IsScriptable() { return true; }
  47. /**
  48. * Succinct documentation.
  49. */
  50. virtual const char* GetTerseDocumentation()
  51. {
  52. return
  53. "Deprecated. Use the execute_process() command instead.";
  54. }
  55. /**
  56. * More documentation.
  57. */
  58. virtual const char* GetFullDocumentation()
  59. {
  60. return
  61. "Run an executable program during the processing of the CMakeList.txt"
  62. " file.\n"
  63. " exec_program(Executable [directory in which to run]\n"
  64. " [ARGS <arguments to executable>]\n"
  65. " [OUTPUT_VARIABLE <var>]\n"
  66. " [RETURN_VALUE <var>])\n"
  67. "The executable is run in the optionally specified directory. The "
  68. "executable can include arguments if it is double quoted, but it is "
  69. "better to use the optional ARGS argument to specify arguments to the "
  70. "program. This is because cmake will then be able to escape spaces "
  71. "in the executable path. An optional argument OUTPUT_VARIABLE "
  72. "specifies a variable in which to store the output. "
  73. "To capture the return value of the execution, provide a RETURN_VALUE. "
  74. "If OUTPUT_VARIABLE is specified, then no output will go to the "
  75. "stdout/stderr of the console running cmake.\n"
  76. ;
  77. }
  78. /** This command is kept for compatibility with older CMake versions. */
  79. virtual bool IsDiscouraged()
  80. {
  81. return true;
  82. }
  83. cmTypeMacro(cmExecProgramCommand, cmCommand);
  84. };
  85. #endif