2009-09-28 19:43:28 +04:00
|
|
|
/*============================================================================
|
|
|
|
CMake - Cross Platform Makefile Generator
|
|
|
|
Copyright 2000-2009 Kitware, Inc., Insight Software Consortium
|
2001-07-31 19:29:21 +04:00
|
|
|
|
2009-09-28 19:43:28 +04:00
|
|
|
Distributed under the OSI-approved BSD License (the "License");
|
|
|
|
see accompanying file Copyright.txt for details.
|
2001-07-31 19:29:21 +04:00
|
|
|
|
2009-09-28 19:43:28 +04:00
|
|
|
This software is distributed WITHOUT ANY WARRANTY; without even the
|
|
|
|
implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
|
|
|
|
See the License for more information.
|
|
|
|
============================================================================*/
|
2001-07-31 19:29:21 +04:00
|
|
|
#ifndef cmInstallProgramsCommand_h
|
|
|
|
#define cmInstallProgramsCommand_h
|
|
|
|
|
|
|
|
#include "cmCommand.h"
|
|
|
|
|
|
|
|
/** \class cmInstallProgramsCommand
|
|
|
|
* \brief Specifies where to install some programs
|
|
|
|
*
|
|
|
|
* cmInstallProgramsCommand specifies the relative path where a list of
|
|
|
|
* programs should be installed.
|
|
|
|
*/
|
|
|
|
class cmInstallProgramsCommand : public cmCommand
|
|
|
|
{
|
|
|
|
public:
|
|
|
|
/**
|
|
|
|
* This is a virtual constructor for the command.
|
|
|
|
*/
|
|
|
|
virtual cmCommand* Clone()
|
|
|
|
{
|
|
|
|
return new cmInstallProgramsCommand;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* This is called when the command is first encountered in
|
|
|
|
* the CMakeLists.txt file.
|
|
|
|
*/
|
2008-01-23 18:28:26 +03:00
|
|
|
virtual bool InitialPass(std::vector<std::string> const& args,
|
|
|
|
cmExecutionStatus &status);
|
2001-07-31 19:29:21 +04:00
|
|
|
|
|
|
|
/**
|
|
|
|
* The name of the command as specified in CMakeList.txt.
|
|
|
|
*/
|
2007-10-10 19:47:43 +04:00
|
|
|
virtual const char* GetName() { return "install_programs";}
|
2001-07-31 19:29:21 +04:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Succinct documentation.
|
|
|
|
*/
|
|
|
|
virtual const char* GetTerseDocumentation()
|
|
|
|
{
|
2007-10-10 19:47:43 +04:00
|
|
|
return "Deprecated. Use the install(PROGRAMS ) command instead.";
|
2001-07-31 19:29:21 +04:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* This is called at the end after all the information
|
|
|
|
* specified by the command is accumulated. Most commands do
|
|
|
|
* not implement this method. At this point, reading and
|
|
|
|
* writing to the cache can be done.
|
|
|
|
*/
|
|
|
|
virtual void FinalPass();
|
|
|
|
|
2009-07-24 21:31:34 +04:00
|
|
|
virtual bool HasFinalPass() const { return true; }
|
|
|
|
|
2001-07-31 19:29:21 +04:00
|
|
|
/**
|
|
|
|
* More documentation.
|
|
|
|
*/
|
|
|
|
virtual const char* GetFullDocumentation()
|
|
|
|
{
|
|
|
|
return
|
2007-10-10 19:47:43 +04:00
|
|
|
"This command has been superceded by the install command. It "
|
2006-02-20 02:47:13 +03:00
|
|
|
"is provided for compatibility with older CMake code. "
|
|
|
|
"The FILES form is directly replaced by the PROGRAMS form of the "
|
|
|
|
"INSTALL command. The regexp form can be expressed more clearly "
|
|
|
|
"using the GLOB form of the FILE command.\n"
|
2007-10-10 19:47:43 +04:00
|
|
|
" install_programs(<dir> file1 file2 [file3 ...])\n"
|
|
|
|
" install_programs(<dir> FILES file1 [file2 ...])\n"
|
2006-05-11 23:50:11 +04:00
|
|
|
"Create rules to install the listed programs into the given directory. "
|
2005-03-01 20:13:38 +03:00
|
|
|
"Use the FILES argument to guarantee that the file list version of "
|
|
|
|
"the command will be used even when there is only one argument.\n"
|
2007-10-10 19:47:43 +04:00
|
|
|
" install_programs(<dir> regexp)\n"
|
2003-02-15 02:47:16 +03:00
|
|
|
"In the second form any program in the current source directory that "
|
2003-08-06 23:22:26 +04:00
|
|
|
"matches the regular expression will be installed.\n"
|
2003-02-15 02:47:16 +03:00
|
|
|
"This command is intended to install programs that are not built "
|
2006-02-20 02:47:13 +03:00
|
|
|
"by cmake, such as shell scripts. See the TARGETS form of "
|
|
|
|
"the INSTALL command to "
|
2003-08-06 23:22:26 +04:00
|
|
|
"create installation rules for targets built by cmake.\n"
|
2003-02-15 02:47:16 +03:00
|
|
|
"The directory <dir> is relative to the installation prefix, which "
|
|
|
|
"is stored in the variable CMAKE_INSTALL_PREFIX.";
|
2001-07-31 19:29:21 +04:00
|
|
|
}
|
|
|
|
|
2006-09-01 17:51:28 +04:00
|
|
|
/** This command is kept for compatibility with older CMake versions. */
|
2006-08-31 21:20:12 +04:00
|
|
|
virtual bool IsDiscouraged()
|
|
|
|
{
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
2001-07-31 19:29:21 +04:00
|
|
|
cmTypeMacro(cmInstallProgramsCommand, cmCommand);
|
|
|
|
|
2002-09-17 18:56:18 +04:00
|
|
|
protected:
|
|
|
|
std::string FindInstallSource(const char* name) const;
|
|
|
|
private:
|
2006-03-15 19:02:08 +03:00
|
|
|
std::vector<std::string> FinalArgs;
|
2007-05-23 23:40:12 +04:00
|
|
|
std::string Destination;
|
|
|
|
std::vector<std::string> Files;
|
2001-07-31 19:29:21 +04:00
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
#endif
|