cmSetTargetPropertiesCommand.h 2.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778
  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 cmSetTargetsPropertiesCommand_h
  14. #define cmSetTargetsPropertiesCommand_h
  15. #include "cmStandardIncludes.h"
  16. #include "cmCommand.h"
  17. class cmSetTargetPropertiesCommand : public cmCommand
  18. {
  19. public:
  20. virtual cmCommand* Clone()
  21. {
  22. return new cmSetTargetPropertiesCommand;
  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_TARGET_PROPERTIES";}
  33. /**
  34. * Succinct documentation.
  35. */
  36. virtual const char* GetTerseDocumentation()
  37. {
  38. return "Targets 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_TARGET_PROPERTIES(target1 target2 ...\n"
  47. " PROPERTIES prop1 value1\n"
  48. " prop2 value2 ...)\n"
  49. "Set properties on a target. The syntax for the command is to "
  50. "list all the files you want "
  51. "to change, and then provide the values you want to set next. "
  52. "Properties that cmake knows about are PREFIX and SUFFIX for Unix "
  53. "systems and libraries. CMake also knows about LINK_FLAGS, which "
  54. "can be used to add extra flags to the link step of a target."
  55. "DEFINE_SYMBOL is a symbol that is defined when compiling C or C++ "
  56. "sources. "
  57. "If not set here then it is set to target_EXPORTS by default "
  58. "(with some substitutions if target is not a valid C identifier). "
  59. "You can use and prop value pair you want and extract it later with "
  60. "the GET_TARGET_PROPERTY command.";
  61. }
  62. cmTypeMacro(cmSetTargetPropertiesCommand, cmCommand);
  63. };
  64. #endif