1
0

cmSetSourceFilesPropertiesCommand.h 3.1 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788
  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 cmSetSourceFilesPropertiesCommand_h
  14. #define cmSetSourceFilesPropertiesCommand_h
  15. #include "cmStandardIncludes.h"
  16. #include "cmCommand.h"
  17. class cmSetSourceFilesPropertiesCommand : public cmCommand
  18. {
  19. public:
  20. virtual cmCommand* Clone()
  21. {
  22. return new cmSetSourceFilesPropertiesCommand;
  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 "SET_SOURCE_FILES_PROPERTIES";}
  33. /**
  34. * Succinct documentation.
  35. */
  36. virtual const char* GetTerseDocumentation()
  37. {
  38. return "Source files can have properties that affect how they are built.";
  39. }
  40. /**
  41. * Longer documentation.
  42. */
  43. virtual const char* GetFullDocumentation()
  44. {
  45. return
  46. " SET_SOURCE_FILES_PROPERTIES(file1 file2 ...\n"
  47. " PROPERTIES prop1 value1\n"
  48. " prop2 value2 ...)\n"
  49. "Set properties on a file. The syntax for the command is to list all "
  50. "the files you want "
  51. "to change, and then provide the values you want to set next. You "
  52. "can make up your own properties as well. "
  53. "The following are used by CMake. "
  54. "The ABSTRACT flag (boolean) appears to have some effect on the VTK "
  55. "wrapper commands. "
  56. "If WRAP_EXCLUDE (boolean) is true then the wrapping commands "
  57. "(FLTKWrapUI, QTWrapCC, QTWrapUI, VTKMakeInstantiator, VTKWrapJava, "
  58. "VTKWrapPython, and VTKWrapTcl) will ignore this file. "
  59. "If GENERATED (boolean) is true then it is not an error if this "
  60. "source file does not exist when it is added to a target. Obviously, "
  61. "it must be created (presumably by a custom command) before the "
  62. "target is built. "
  63. "If the HEADER_FILE_ONLY (boolean) property is true then dependency "
  64. "information is not created for that file (this is set "
  65. "automatically, based on the file's name's extension and is probably "
  66. "only used by Makefiles). "
  67. "OBJECT_DEPENDS (string) adds dependencies to the object file. "
  68. "COMPILE_FLAGS (string) is passed to the compiler as additional "
  69. "command line arguments when the source file is compiled. ";
  70. }
  71. cmTypeMacro(cmSetSourceFilesPropertiesCommand, cmCommand);
  72. };
  73. #endif