You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

99 lines
3.7 KiB

20 years ago
  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 "cmCommand.h"
  16. class cmSetSourceFilesPropertiesCommand : public cmCommand
  17. {
  18. public:
  19. virtual cmCommand* Clone()
  20. {
  21. return new cmSetSourceFilesPropertiesCommand;
  22. }
  23. /**
  24. * This is called when the command is first encountered in
  25. * the input file.
  26. */
  27. virtual bool InitialPass(std::vector<std::string> const& args);
  28. /**
  29. * The name of the command as specified in CMakeList.txt.
  30. */
  31. virtual const char* GetName() { return "set_source_files_properties";}
  32. /**
  33. * Succinct documentation.
  34. */
  35. virtual const char* GetTerseDocumentation()
  36. {
  37. return "Source files can have properties that affect how they are built.";
  38. }
  39. /**
  40. * Longer documentation.
  41. */
  42. virtual const char* GetFullDocumentation()
  43. {
  44. return
  45. " set_source_files_properties(file1 file2 ...\n"
  46. " PROPERTIES prop1 value1\n"
  47. " prop2 value2 ...)\n"
  48. "Set properties on a file. The syntax for the command is to list all "
  49. "the files you want "
  50. "to change, and then provide the values you want to set next. You "
  51. "can make up your own properties as well. "
  52. "The following are used by CMake. "
  53. "The ABSTRACT flag (boolean) is used by some class wrapping "
  54. "commands. "
  55. "If WRAP_EXCLUDE (boolean) is true then many wrapping commands "
  56. "will ignore this file. If GENERATED (boolean) is true then it "
  57. "is not an error if this source file does not exist when it is "
  58. "added to a target. Obviously, "
  59. "it must be created (presumably by a custom command) before the "
  60. "target is built. "
  61. "If the HEADER_FILE_ONLY (boolean) property is true then dependency "
  62. "information is not created for that file (this is set "
  63. "automatically, based on the file's name's extension and is probably "
  64. "only used by Makefiles). "
  65. "OBJECT_DEPENDS (string) adds dependencies to the object file. "
  66. "COMPILE_FLAGS (string) is passed to the compiler as additional "
  67. "command line arguments when the source file is compiled. "
  68. "LANGUAGE (string) CXX|C will change the default compiler used "
  69. "to compile the source file. The languages used need to be enabled "
  70. "in the PROJECT command. "
  71. "If SYMBOLIC (boolean) is set to true the build system will be "
  72. "informed that the source file is not actually created on disk but "
  73. "instead used as a symbolic name for a build rule.";
  74. }
  75. cmTypeMacro(cmSetSourceFilesPropertiesCommand, cmCommand);
  76. static bool RunCommand(cmMakefile *mf,
  77. std::vector<std::string>::const_iterator filebeg,
  78. std::vector<std::string>::const_iterator fileend,
  79. std::vector<std::string>::const_iterator propbeg,
  80. std::vector<std::string>::const_iterator propend,
  81. std::string &errors);
  82. };
  83. #endif