cmConfigureFileCommand.h 3.0 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697
  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 cmConfigureFileCommand_h
  14. #define cmConfigureFileCommand_h
  15. #include "cmCommand.h"
  16. class cmConfigureFileCommand : public cmCommand
  17. {
  18. public:
  19. cmTypeMacro(cmConfigureFileCommand, cmCommand);
  20. virtual cmCommand* Clone()
  21. {
  22. return new cmConfigureFileCommand;
  23. }
  24. /**
  25. * This is called when the command is first encountered in
  26. * the input file.
  27. */
  28. virtual bool InitialPass(std::vector<std::string> const& args,
  29. cmExecutionStatus &status);
  30. /**
  31. * The name of the command as specified in CMakeList.txt.
  32. */
  33. virtual const char* GetName() { return "configure_file";}
  34. /**
  35. * This determines if the command is invoked when in script mode.
  36. */
  37. virtual bool IsScriptable() { return true; }
  38. /**
  39. * Succinct documentation.
  40. */
  41. virtual const char* GetTerseDocumentation()
  42. {
  43. return "Copy a file to another location and modify its contents.";
  44. }
  45. /**
  46. * Longer documentation.
  47. */
  48. virtual const char* GetFullDocumentation()
  49. {
  50. return
  51. " configure_file(InputFile OutputFile\n"
  52. " [COPYONLY] [ESCAPE_QUOTES] [@ONLY])\n"
  53. "The Input and Output files have to have full paths. "
  54. "This command replaces any variables in the input file referenced as "
  55. "${VAR} or @VAR@ with their values as determined by CMake. If a "
  56. "variable is not defined, it will be replaced with nothing. "
  57. "If COPYONLY is specified, then no variable expansion will take "
  58. "place. If ESCAPE_QUOTES is specified then any substituted quotes "
  59. "will be C-style escaped. "
  60. "The file will be configured with the current values of CMake "
  61. "variables. If @ONLY is specified, only variables "
  62. "of the form @VAR@ will be replaces and ${VAR} will be ignored. "
  63. "This is useful for configuring scripts that use ${VAR}. "
  64. "Any occurrences of #cmakedefine VAR will be replaced with "
  65. "either #define VAR or /* #undef VAR */ depending on "
  66. "the setting of VAR in CMake. Any occurrences of #cmakedefine01 VAR "
  67. "will be replaced with either #define VAR 1 or #define VAR 0 "
  68. "depending on whether VAR evaluates to TRUE or FALSE in CMake";
  69. }
  70. virtual void FinalPass();
  71. private:
  72. int ConfigureFile();
  73. std::string InputFile;
  74. std::string OuputFile;
  75. bool CopyOnly;
  76. bool EscapeQuotes;
  77. bool Immediate;
  78. bool AtOnly;
  79. };
  80. #endif