cmWrapExcludeFilesCommand.h 1.6 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364
  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 cmWrapExcludeFilesCommand_h
  14. #define cmWrapExcludeFilesCommand_h
  15. #include "cmStandardIncludes.h"
  16. #include "cmCommand.h"
  17. class cmWrapExcludeFilesCommand : public cmCommand
  18. {
  19. public:
  20. virtual cmCommand* Clone()
  21. {
  22. return new cmWrapExcludeFilesCommand;
  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 "WRAP_EXCLUDE_FILES";}
  33. /**
  34. * Succinct documentation.
  35. */
  36. virtual const char* GetTerseDocumentation()
  37. {
  38. return "A list of classes, to exclude from wrapping.";
  39. }
  40. /**
  41. * Longer documentation.
  42. */
  43. virtual const char* GetFullDocumentation()
  44. {
  45. return
  46. "WRAP_EXCLUDE_FILES(file1 file2 ..)";
  47. }
  48. cmTypeMacro(cmWrapExcludeFilesCommand, cmCommand);
  49. };
  50. #endif