cmConfigureFileCommand.h 2.9 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495
  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";
  67. }
  68. virtual void FinalPass();
  69. private:
  70. int ConfigureFile();
  71. std::string InputFile;
  72. std::string OuputFile;
  73. bool CopyOnly;
  74. bool EscapeQuotes;
  75. bool Immediate;
  76. bool AtOnly;
  77. };
  78. #endif