cmTargetLinkLibrariesCommand.h 2.3 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980
  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 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. "Specify a list of libraries to be linked into\n"
  50. "executables or shared objects.";
  51. }
  52. /**
  53. * More documentation.
  54. */
  55. virtual const char* GetFullDocumentation()
  56. {
  57. return
  58. "TARGET_LINK_LIBRARIES(target library1 <debug | optimized> library2 ...)\n"
  59. "Specify a list of libraries to be linked into the specified target\n"
  60. "The debug and optimized strings may be used to indicate that\n"
  61. "the next library listed is to be used only for that specific\n"
  62. "type of build";
  63. }
  64. cmTypeMacro(cmTargetLinkLibrariesCommand, cmCommand);
  65. };
  66. #endif