cmConfigureFileCommand.h 2.8 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394
  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. /**
  30. * The name of the command as specified in CMakeList.txt.
  31. */
  32. virtual const char* GetName() { return "CONFIGURE_FILE";}
  33. /**
  34. * This determines if the command is invoked when in script mode.
  35. */
  36. virtual bool IsScriptable() { return true; }
  37. /**
  38. * Succinct documentation.
  39. */
  40. virtual const char* GetTerseDocumentation()
  41. {
  42. return "Copy a file to another location and modify its contents.";
  43. }
  44. /**
  45. * Longer documentation.
  46. */
  47. virtual const char* GetFullDocumentation()
  48. {
  49. return
  50. " CONFIGURE_FILE(InputFile OutputFile\n"
  51. " [COPYONLY] [ESCAPE_QUOTES] [@ONLY])\n"
  52. "The Input and Ouput files have to have full paths. "
  53. "This command replaces any variables in the input file referenced as "
  54. "${VAR} or @VAR@ with their values as determined by CMake. If a "
  55. "variable is not defined, it will be replaced with nothing. "
  56. "If COPYONLY is specified, then no variable expansion will take "
  57. "place. If ESCAPE_QUOTES is specified then any substituted quotes "
  58. "will be C-style escaped. "
  59. "The file will be configured with the current values of CMake "
  60. "variables. If @ONLY is specified, only variables "
  61. "of the form @VAR@ will be replaces and ${VAR} will be ignored. "
  62. "This is useful for configuring scripts that use ${VAR}. "
  63. "Any occurrences of #cmakedefine VAR will be replaced with "
  64. "either #define VAR or /* #undef VAR */ depending on "
  65. "the setting of VAR in CMake";
  66. }
  67. virtual void FinalPass();
  68. private:
  69. int ConfigureFile();
  70. std::string InputFile;
  71. std::string OuputFile;
  72. bool CopyOnly;
  73. bool EscapeQuotes;
  74. bool Immediate;
  75. bool AtOnly;
  76. };
  77. #endif