cmSourceGroupCommand.h 2.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384
  1. /*=========================================================================
  2. Program: Insight Segmentation & Registration Toolkit
  3. Module: $RCSfile$
  4. Language: C++
  5. Date: $Date$
  6. Version: $Revision$
  7. Copyright (c) 2000 National Library of Medicine
  8. All rights reserved.
  9. See COPYRIGHT.txt for copyright details.
  10. =========================================================================*/
  11. #ifndef cmSourceGroupCommand_h
  12. #define cmSourceGroupCommand_h
  13. #include "cmStandardIncludes.h"
  14. #include "cmCommand.h"
  15. /** \class cmSourceGroupCommand
  16. * \brief Adds a cmSourceGroup to the cmMakefile.
  17. *
  18. * cmSourceGroupCommand is used to define cmSourceGroups which split up
  19. * source files in to named, organized groups in the generated makefiles.
  20. */
  21. class cmSourceGroupCommand : public cmCommand
  22. {
  23. public:
  24. /**
  25. * This is a virtual constructor for the command.
  26. */
  27. virtual cmCommand* Clone()
  28. {
  29. return new cmSourceGroupCommand;
  30. }
  31. /**
  32. * This is called when the command is first encountered in
  33. * the CMakeLists.txt file.
  34. */
  35. virtual bool Invoke(std::vector<std::string>& args);
  36. /**
  37. * The name of the command as specified in CMakeList.txt.
  38. */
  39. virtual const char* GetName() {return "SOURCE_GROUP";}
  40. /**
  41. * This determines if the command gets propagated down
  42. * to makefiles located in subdirectories.
  43. */
  44. virtual bool IsInherited()
  45. {
  46. return true;
  47. }
  48. /**
  49. * Succinct documentation.
  50. */
  51. virtual const char* GetTerseDocumentation()
  52. {
  53. return "Define a grouping for sources in the makefile.";
  54. }
  55. /**
  56. * More documentation.
  57. */
  58. virtual const char* GetFullDocumentation()
  59. {
  60. return
  61. "SOURCE_GROUP(name regex)\n"
  62. "Defines a new source group. Any file whose name matches the regular\n"
  63. "expression will be placed in this group. The LAST regular expression\n"
  64. "of all defined SOURCE_GROUPs that matches the file will be selected.";
  65. }
  66. cmTypeMacro(cmSourceGroupCommand, cmCommand);
  67. };
  68. #endif