cmConfigureFileCommand.h 3.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107
  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(<input> <output>\n"
  52. " [COPYONLY] [ESCAPE_QUOTES] [@ONLY])\n"
  53. "Copies a file <input> to file <output> and substitutes variable "
  54. "values referenced in the file content. "
  55. "If <input> is a relative path it is evaluated with respect to "
  56. "the current source directory. "
  57. "The <input> must be a file, not a directory. "
  58. "If <output> is a relative path it is evaluated with respect to "
  59. "the current binary directory. "
  60. "If <output> names an existing directory the input file is placed "
  61. "in that directory with its original name. "
  62. "\n"
  63. "This command replaces any variables in the input file referenced as "
  64. "${VAR} or @VAR@ with their values as determined by CMake. If a "
  65. "variable is not defined, it will be replaced with nothing. "
  66. "If COPYONLY is specified, then no variable expansion will take "
  67. "place. If ESCAPE_QUOTES is specified then any substituted quotes "
  68. "will be C-style escaped. "
  69. "The file will be configured with the current values of CMake "
  70. "variables. If @ONLY is specified, only variables "
  71. "of the form @VAR@ will be replaces and ${VAR} will be ignored. "
  72. "This is useful for configuring scripts that use ${VAR}. "
  73. "Any occurrences of #cmakedefine VAR will be replaced with "
  74. "either #define VAR or /* #undef VAR */ depending on "
  75. "the setting of VAR in CMake. Any occurrences of #cmakedefine01 VAR "
  76. "will be replaced with either #define VAR 1 or #define VAR 0 "
  77. "depending on whether VAR evaluates to TRUE or FALSE in CMake";
  78. }
  79. virtual void FinalPass();
  80. virtual bool HasFinalPass() const { return !this->Immediate; }
  81. private:
  82. int ConfigureFile();
  83. std::string InputFile;
  84. std::string OutputFile;
  85. bool CopyOnly;
  86. bool EscapeQuotes;
  87. bool Immediate;
  88. bool AtOnly;
  89. };
  90. #endif