cmOutputRequiredFilesCommand.h 2.6 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788
  1. /*============================================================================
  2. CMake - Cross Platform Makefile Generator
  3. Copyright 2000-2009 Kitware, Inc., Insight Software Consortium
  4. Distributed under the OSI-approved BSD License (the "License");
  5. see accompanying file Copyright.txt for details.
  6. This software is distributed WITHOUT ANY WARRANTY; without even the
  7. implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
  8. See the License for more information.
  9. ============================================================================*/
  10. #ifndef cmOutputRequiredFilesCommand_h
  11. #define cmOutputRequiredFilesCommand_h
  12. #include "cmCommand.h"
  13. #include "cmMakeDepend.h"
  14. /** \class cmOutputRequiredFilesCommand
  15. * \brief Output a list of required files for a source file
  16. *
  17. */
  18. class cmOutputRequiredFilesCommand : public cmCommand
  19. {
  20. public:
  21. /**
  22. * This is a virtual constructor for the command.
  23. */
  24. virtual cmCommand* Clone()
  25. {
  26. return new cmOutputRequiredFilesCommand;
  27. }
  28. /**
  29. * This is called when the command is first encountered in
  30. * the CMakeLists.txt file.
  31. */
  32. virtual bool InitialPass(std::vector<std::string> const& args,
  33. cmExecutionStatus &status);
  34. /**
  35. * The name of the command as specified in CMakeList.txt.
  36. */
  37. virtual const char* GetName() { return "output_required_files";}
  38. /**
  39. * Succinct documentation.
  40. */
  41. virtual const char* GetTerseDocumentation()
  42. {
  43. return "Deprecated. Approximate C preprocessor dependency scanning.";
  44. }
  45. /**
  46. * More documentation.
  47. */
  48. virtual const char* GetFullDocumentation()
  49. {
  50. return
  51. "This command exists only because ancient CMake versions provided it. "
  52. "CMake handles preprocessor dependency scanning automatically using a "
  53. "more advanced scanner.\n"
  54. " output_required_files(srcfile outputfile)\n"
  55. "Outputs a list of all the source files that are required by the "
  56. "specified srcfile. This list is written into outputfile. This is "
  57. "similar to writing out the dependencies for srcfile except that it "
  58. "jumps from .h files into .cxx, .c and .cpp files if possible.";
  59. }
  60. /** This command is kept for compatibility with older CMake versions. */
  61. virtual bool IsDiscouraged()
  62. {
  63. return true;
  64. }
  65. cmTypeMacro(cmOutputRequiredFilesCommand, cmCommand);
  66. void ListDependencies(cmDependInformation const *info,
  67. FILE *fout,
  68. std::set<cmDependInformation const*> *visited);
  69. private:
  70. std::string File;
  71. std::string OutputFile;
  72. };
  73. #endif