2001-07-31 19:29:21 +04:00
|
|
|
/*=========================================================================
|
|
|
|
|
2002-10-24 02:03:27 +04:00
|
|
|
Program: CMake - Cross-Platform Makefile Generator
|
2001-07-31 19:29:21 +04:00
|
|
|
Module: $RCSfile$
|
|
|
|
Language: C++
|
|
|
|
Date: $Date$
|
|
|
|
Version: $Revision$
|
|
|
|
|
2002-10-24 02:03:27 +04:00
|
|
|
Copyright (c) 2002 Kitware, Inc., Insight Consortium. All rights reserved.
|
|
|
|
See Copyright.txt or http://www.cmake.org/HTML/Copyright.html for details.
|
2001-07-31 19:29:21 +04:00
|
|
|
|
2002-01-21 23:30:43 +03:00
|
|
|
This software is distributed WITHOUT ANY WARRANTY; without even
|
|
|
|
the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR
|
|
|
|
PURPOSE. See the above copyright notices 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.
|
|
|
|
*/
|
2001-09-20 23:08:30 +04:00
|
|
|
virtual bool InitialPass(std::vector<std::string> const& args);
|
2001-07-31 19:29:21 +04:00
|
|
|
|
|
|
|
/**
|
|
|
|
* The name of the command as specified in CMakeList.txt.
|
|
|
|
*/
|
|
|
|
virtual const char* GetName() { return "INSTALL_PROGRAMS";}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Succinct documentation.
|
|
|
|
*/
|
|
|
|
virtual const char* GetTerseDocumentation()
|
|
|
|
{
|
2003-02-15 02:47:16 +03:00
|
|
|
return "Create UNIX install rules for programs.";
|
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();
|
|
|
|
|
|
|
|
/**
|
|
|
|
* More documentation.
|
|
|
|
*/
|
|
|
|
virtual const char* GetFullDocumentation()
|
|
|
|
{
|
|
|
|
return
|
2003-02-15 02:47:16 +03:00
|
|
|
" INSTALL_PROGRAMS(<dir> file file ...)\n"
|
|
|
|
"Create rules to install the listed programs into the given directory.\n"
|
|
|
|
" INSTALL_PROGRAMS(<dir> regexp)\n"
|
|
|
|
"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 "
|
|
|
|
"by cmake, such as shell scripts. See INSTALL_TARGETS 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
|
|
|
}
|
|
|
|
|
|
|
|
cmTypeMacro(cmInstallProgramsCommand, cmCommand);
|
|
|
|
|
2002-09-17 18:56:18 +04:00
|
|
|
protected:
|
|
|
|
std::string FindInstallSource(const char* name) const;
|
|
|
|
private:
|
2001-08-15 01:18:52 +04:00
|
|
|
std::string m_TargetName;
|
2001-07-31 19:29:21 +04:00
|
|
|
std::vector<std::string> m_FinalArgs;
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
#endif
|