cmTargetLinkLibrariesCommand.h 2.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081
  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 cmTargetLinkLibrariesCommand_h
  14. #define cmTargetLinkLibrariesCommand_h
  15. #include "cmStandardIncludes.h"
  16. #include "cmCommand.h"
  17. /** \class cmTargetLinkLibrariesCommand
  18. * \brief Specify a list of libraries to link into executables.
  19. *
  20. * cmTargetLinkLibrariesCommand is used to specify a list of libraries to link
  21. * into executable(s) or shared objects. The names of the libraries
  22. * should be those defined by the LIBRARY(library) command(s).
  23. */
  24. class cmTargetLinkLibrariesCommand : public cmCommand
  25. {
  26. public:
  27. /**
  28. * This is a virtual constructor for the command.
  29. */
  30. virtual cmCommand* Clone()
  31. {
  32. return new cmTargetLinkLibrariesCommand;
  33. }
  34. /**
  35. * This is called when the command is first encountered in
  36. * the CMakeLists.txt file.
  37. */
  38. virtual bool InitialPass(std::vector<std::string> const& args);
  39. /**
  40. * The name of the command as specified in CMakeList.txt.
  41. */
  42. virtual const char* GetName() { return "TARGET_LINK_LIBRARIES";}
  43. /**
  44. * Succinct documentation.
  45. */
  46. virtual const char* GetTerseDocumentation()
  47. {
  48. return
  49. "Link a target to given libraries.";
  50. }
  51. /**
  52. * More documentation.
  53. */
  54. virtual const char* GetFullDocumentation()
  55. {
  56. return
  57. " TARGET_LINK_LIBRARIES(target library1\n"
  58. " <debug | optimized> library2\n"
  59. " ...)\n"
  60. "Specify a list of libraries to be linked into the specified target "
  61. "The debug and optimized strings may be used to indicate that "
  62. "the next library listed is to be used only for that specific "
  63. "type of build";
  64. }
  65. cmTypeMacro(cmTargetLinkLibrariesCommand, cmCommand);
  66. };
  67. #endif