1 /*=========================================================================
3 Program: CMake - Cross-Platform Makefile Generator
4 Module: $RCSfile: cmLinkDirectoriesCommand.h,v $
6 <<<<<<< cmLinkDirectoriesCommand.h
7 Date: $Date: 2008/01/23 15:27:59 $
8 Version: $Revision: 1.13 $
10 Date: $Date: 2009-01-29 19:14:02 $
11 Version: $Revision: 1.14 $
14 Copyright (c) 2002 Kitware, Inc., Insight Consortium. All rights reserved.
15 See Copyright.txt or http://www.cmake.org/HTML/Copyright.html for details.
17 This software is distributed WITHOUT ANY WARRANTY; without even
18 the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR
19 PURPOSE. See the above copyright notices for more information.
21 =========================================================================*/
22 #ifndef cmLinkDirectoriesCommand_h
23 #define cmLinkDirectoriesCommand_h
25 #include "cmCommand.h"
27 /** \class cmLinkDirectoriesCommand
28 * \brief Define a list of directories containing files to link.
30 * cmLinkDirectoriesCommand is used to specify a list
31 * of directories containing files to link into executable(s).
32 * Note that the command supports the use of CMake built-in variables
33 * such as CMAKE_BINARY_DIR and CMAKE_SOURCE_DIR.
35 class cmLinkDirectoriesCommand
: public cmCommand
39 * This is a virtual constructor for the command.
41 virtual cmCommand
* Clone()
43 return new cmLinkDirectoriesCommand
;
47 * This is called when the command is first encountered in
48 * the CMakeLists.txt file.
50 virtual bool InitialPass(std::vector
<std::string
> const& args
,
51 cmExecutionStatus
&status
);
54 * The name of the command as specified in CMakeList.txt.
56 virtual const char* GetName() { return "link_directories";}
59 * Succinct documentation.
61 virtual const char* GetTerseDocumentation()
63 return "Specify directories in which the linker will look for libraries.";
69 virtual const char* GetFullDocumentation()
72 " link_directories(directory1 directory2 ...)\n"
73 "Specify the paths in which the linker should search for libraries. "
74 "The command will apply only to targets created after it is called. "
75 "For historical reasons, relative paths given to this command are "
76 "passed to the linker unchanged "
77 "(unlike many CMake commands which interpret them relative to the "
78 "current source directory)."
82 cmTypeMacro(cmLinkDirectoriesCommand
, cmCommand
);