ENH: mark some vars as advanced (and resort the list)
[cmake.git] / Source / cmInstallTargetsCommand.h
blobc92029fa692f64a0693271e2baac6a075d955ad6
1 /*=========================================================================
3 Program: Insight Segmentation & Registration Toolkit
4 Module: $RCSfile: cmInstallTargetsCommand.h,v $
5 Language: C++
6 Date: $Date: 2002-01-21 20:30:27 $
7 Version: $Revision: 1.4 $
9 Copyright (c) 2002 Insight Consortium. All rights reserved.
10 See ITKCopyright.txt or http://www.itk.org/HTML/Copyright.htm for details.
12 This software is distributed WITHOUT ANY WARRANTY; without even
13 the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR
14 PURPOSE. See the above copyright notices for more information.
16 =========================================================================*/
17 #ifndef cmInstallTargetsCommand_h
18 #define cmInstallTargetsCommand_h
20 #include "cmStandardIncludes.h"
21 #include "cmCommand.h"
23 /** \class cmInstallTargetsCommand
24 * \brief Specifies where to install some targets
26 * cmInstallTargetsCommand specifies the relative path where a list of
27 * targets should be installed. The targets can be executables or
28 * libraries.
30 class cmInstallTargetsCommand : public cmCommand
32 public:
33 /**
34 * This is a virtual constructor for the command.
36 virtual cmCommand* Clone()
38 return new cmInstallTargetsCommand;
41 /**
42 * This is called when the command is first encountered in
43 * the CMakeLists.txt file.
45 virtual bool InitialPass(std::vector<std::string> const& args);
47 /**
48 * The name of the command as specified in CMakeList.txt.
50 virtual const char* GetName() { return "INSTALL_TARGETS";}
52 /**
53 * Succinct documentation.
55 virtual const char* GetTerseDocumentation()
57 return "Create install rules for targets";
60 /**
61 * More documentation.
63 virtual const char* GetFullDocumentation()
65 return
66 "INSTALL_TARGETS(path target target)\n"
67 "Create rules to install the listed targets into the path. Path is relative to the variable PREFIX";
70 cmTypeMacro(cmInstallTargetsCommand, cmCommand);
74 #endif