cmGetSourceFilePropertyCommand.h 1.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566
  1. /*=========================================================================
  2. Program: Insight Segmentation & Registration Toolkit
  3. Module: $RCSfile$
  4. Language: C++
  5. Date: $Date$
  6. Version: $Revision$
  7. Copyright (c) 2002 Insight Consortium. All rights reserved.
  8. See ITKCopyright.txt or http://www.itk.org/HTML/Copyright.htm 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 cmGetSourceFilePropertyCommand_h
  14. #define cmGetSourceFilePropertyCommand_h
  15. #include "cmStandardIncludes.h"
  16. #include "cmCommand.h"
  17. class cmGetSourceFilePropertyCommand : public cmCommand
  18. {
  19. public:
  20. virtual cmCommand* Clone()
  21. {
  22. return new cmGetSourceFilePropertyCommand;
  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 "GET_SOURCE_FILE_PROPERTY";}
  33. /**
  34. * Succinct documentation.
  35. */
  36. virtual const char* GetTerseDocumentation()
  37. {
  38. return "Set attributes for a specific list of files.";
  39. }
  40. /**
  41. * Longer documentation.
  42. */
  43. virtual const char* GetFullDocumentation()
  44. {
  45. return
  46. "GET_SOURCE_FILE_PROPERTY(VAR file [ABSTRACT|WRAP_EXCLUDE|COMPILE_FLAGS]) "
  47. "Get a property from a source file. The value of the property is stored "
  48. "in the variable VAR.";
  49. }
  50. cmTypeMacro(cmGetSourceFilePropertyCommand, cmCommand);
  51. };
  52. #endif