2006-02-10 21:54:36 +03:00
|
|
|
/*=========================================================================
|
|
|
|
|
|
|
|
Program: CMake - Cross-Platform Makefile Generator
|
|
|
|
Module: $RCSfile$
|
|
|
|
Language: C++
|
|
|
|
Date: $Date$
|
|
|
|
Version: $Revision$
|
|
|
|
|
|
|
|
Copyright (c) 2002 Kitware, Inc., Insight Consortium. All rights reserved.
|
|
|
|
See Copyright.txt or http://www.cmake.org/HTML/Copyright.html for details.
|
|
|
|
|
|
|
|
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.
|
|
|
|
|
|
|
|
=========================================================================*/
|
|
|
|
#ifndef cmInstallCommand_h
|
|
|
|
#define cmInstallCommand_h
|
|
|
|
|
|
|
|
#include "cmCommand.h"
|
|
|
|
|
|
|
|
/** \class cmInstallCommand
|
|
|
|
* \brief Specifies where to install some files
|
|
|
|
*
|
|
|
|
* cmInstallCommand is a general-purpose interface command for
|
|
|
|
* specifying install rules.
|
|
|
|
*/
|
|
|
|
class cmInstallCommand : public cmCommand
|
|
|
|
{
|
|
|
|
public:
|
|
|
|
/**
|
|
|
|
* This is a virtual constructor for the command.
|
|
|
|
*/
|
|
|
|
virtual cmCommand* Clone()
|
|
|
|
{
|
|
|
|
return new cmInstallCommand;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* This is called when the command is first encountered in
|
|
|
|
* the CMakeLists.txt file.
|
|
|
|
*/
|
|
|
|
virtual bool InitialPass(std::vector<std::string> const& args);
|
|
|
|
|
|
|
|
/**
|
|
|
|
* The name of the command as specified in CMakeList.txt.
|
|
|
|
*/
|
|
|
|
virtual const char* GetName() { return "INSTALL";}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Succinct documentation.
|
|
|
|
*/
|
|
|
|
virtual const char* GetTerseDocumentation()
|
|
|
|
{
|
2006-02-19 23:25:27 +03:00
|
|
|
return "Specify rules to run at install time.";
|
2006-02-10 21:54:36 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* More documentation.
|
|
|
|
*/
|
|
|
|
virtual const char* GetFullDocumentation()
|
|
|
|
{
|
|
|
|
return
|
2006-02-19 23:25:27 +03:00
|
|
|
"This command generates installation rules for a project. "
|
|
|
|
"Rules specified by calls to this command within a source directory "
|
|
|
|
"are executed in order during installation. "
|
2006-02-20 02:47:13 +03:00
|
|
|
"The order across directories is not defined."
|
|
|
|
"\n"
|
|
|
|
"There are multiple signatures for this command. Some of them define "
|
|
|
|
"installation properties for files and targets. Properties common to "
|
2006-03-04 02:44:32 +03:00
|
|
|
"multiple signatures are covered here but they are valid only for "
|
|
|
|
"signatures that specify them. "
|
|
|
|
"DESTINATION arguments specify "
|
2006-02-20 02:47:13 +03:00
|
|
|
"the directory on disk to which a file will be installed. "
|
|
|
|
"If a full path (with a leading slash or drive letter) is given it "
|
|
|
|
"is used directly. If a relative path is given it is interpreted "
|
2006-03-04 02:44:32 +03:00
|
|
|
"relative to the value of CMAKE_INSTALL_PREFIX. "
|
|
|
|
"PERMISSIONS arguments specify permissions for installed files. "
|
|
|
|
"Valid permissions are "
|
|
|
|
"OWNER_READ, OWNER_WRITE, OWNER_EXECUTE, "
|
|
|
|
"GROUP_READ, GROUP_WRITE, GROUP_EXECUTE, "
|
|
|
|
"WORLD_READ, WORLD_WRITE, WORLD_EXECUTE, "
|
|
|
|
"SETUID, and SETGID. "
|
|
|
|
"Permissions that do not make sense on certain platforms are ignored "
|
|
|
|
"on those platforms. "
|
2006-05-05 22:57:19 +04:00
|
|
|
"The CONFIGURATIONS argument specifies a list of build configurations "
|
|
|
|
"for which the install rule applies (Debug, Release, etc.). "
|
2006-03-30 22:33:48 +04:00
|
|
|
"The COMPONENT argument specifies an installation component name "
|
|
|
|
"with which the install rule is associated, such as \"runtime\" or "
|
|
|
|
"\"development\". During component-specific installation only "
|
|
|
|
"install rules associated with the given component name will be "
|
|
|
|
"executed. During a full installation all components are installed. "
|
2006-03-04 02:44:32 +03:00
|
|
|
"The RENAME argument specifies a name for an installed file that "
|
|
|
|
"may be different from the original file. Renaming is allowed only "
|
|
|
|
"when a single file is installed by the command. "
|
2006-02-20 02:47:13 +03:00
|
|
|
"\n"
|
|
|
|
"The TARGETS signature:\n"
|
2006-08-22 18:38:10 +04:00
|
|
|
" INSTALL(TARGETS targets...\n"
|
|
|
|
" [[ARCHIVE|LIBRARY|RUNTIME]\n"
|
|
|
|
" [DESTINATION <dir>]\n"
|
|
|
|
" [PERMISSIONS permissions...]\n"
|
|
|
|
" [CONFIGURATIONS [Debug|Release|...]]\n"
|
|
|
|
" [COMPONENT <component>]\n"
|
|
|
|
" ] [...])\n"
|
2006-02-19 23:25:27 +03:00
|
|
|
"The TARGETS form specifies rules for installing targets from a "
|
2006-03-25 00:11:24 +03:00
|
|
|
"project. There are three kinds of target files that may be "
|
|
|
|
"installed: archive, library, and runtime. "
|
|
|
|
|
|
|
|
"Executables are always treated as runtime targets. "
|
|
|
|
"Static libraries are always treated as archive targets. "
|
|
|
|
"Module libraries are always treated as library targets. "
|
2006-05-11 23:50:11 +04:00
|
|
|
"For non-DLL platforms shared libraries are treated as library "
|
|
|
|
"targets. "
|
2006-03-25 00:11:24 +03:00
|
|
|
"For DLL platforms the DLL part of a shared library is treated as "
|
|
|
|
"a runtime target and the corresponding import library is treated as "
|
|
|
|
"an archive target. "
|
|
|
|
"All Windows-based systems including Cygwin are DLL platforms. "
|
|
|
|
"The ARCHIVE, LIBRARY, and RUNTIME "
|
2006-05-11 23:50:11 +04:00
|
|
|
"arguments change the type of target to which the subsequent "
|
|
|
|
"properties "
|
2006-03-25 00:11:24 +03:00
|
|
|
"apply. If none is given the installation properties apply to "
|
|
|
|
"all target types. If only one is given then only targets of that "
|
2006-02-19 23:25:27 +03:00
|
|
|
"type will be installed (which can be used to install just a DLL or "
|
2006-02-20 02:47:13 +03:00
|
|
|
"just an import library)."
|
|
|
|
"\n"
|
2006-02-19 23:25:27 +03:00
|
|
|
"One or more groups of properties may be specified in a single call "
|
|
|
|
"to the TARGETS form of this command. A target may be installed more "
|
|
|
|
"than once to different locations. Consider hypothetical "
|
|
|
|
"targets \"myExe\", \"mySharedLib\", and \"myStaticLib\". The code\n"
|
|
|
|
" INSTALL(TARGETS myExe mySharedLib myStaticLib\n"
|
|
|
|
" RUNTIME DESTINATION bin\n"
|
2006-03-25 00:11:24 +03:00
|
|
|
" LIBRARY DESTINATION lib\n"
|
|
|
|
" ARCHIVE DESTINATION lib/static)\n"
|
2006-02-19 23:25:27 +03:00
|
|
|
" INSTALL(TARGETS mySharedLib DESTINATION /some/full/path)\n"
|
2006-03-25 00:11:24 +03:00
|
|
|
"will install myExe to <prefix>/bin and myStaticLib to "
|
|
|
|
"<prefix>/lib/static. "
|
2006-05-11 23:50:11 +04:00
|
|
|
"On non-DLL platforms mySharedLib will be installed to <prefix>/lib "
|
|
|
|
"and /some/full/path. On DLL platforms the mySharedLib DLL will be "
|
2006-02-19 23:25:27 +03:00
|
|
|
"installed to <prefix>/bin and /some/full/path and its import library "
|
2006-03-25 00:11:24 +03:00
|
|
|
"will be installed to <prefix>/lib/static and /some/full/path. "
|
2006-05-11 23:50:11 +04:00
|
|
|
"On non-DLL platforms mySharedLib will be installed to <prefix>/lib "
|
|
|
|
"and /some/full/path."
|
2006-02-20 02:47:13 +03:00
|
|
|
"\n"
|
|
|
|
"The FILES signature:\n"
|
2006-03-04 02:44:32 +03:00
|
|
|
" INSTALL(FILES files... DESTINATION <dir>\n"
|
2006-03-30 22:33:48 +04:00
|
|
|
" [PERMISSIONS permissions...]\n"
|
2006-05-05 22:57:19 +04:00
|
|
|
" [CONFIGURATIONS [Debug|Release|...]]\n"
|
2006-03-30 22:33:48 +04:00
|
|
|
" [COMPONENT <component>]\n"
|
|
|
|
" [RENAME <name>])\n"
|
2006-02-20 02:47:13 +03:00
|
|
|
"The FILES form specifies rules for installing files for a "
|
|
|
|
"project. File names given as relative paths are interpreted with "
|
|
|
|
"respect to the current source directory. Files installed by this "
|
2006-04-18 18:30:56 +04:00
|
|
|
"form are by default given permissions OWNER_WRITE, OWNER_READ, "
|
|
|
|
"GROUP_READ, and WORLD_READ if no PERMISSIONS argument is given."
|
2006-02-20 02:47:13 +03:00
|
|
|
"\n"
|
|
|
|
"The PROGRAMS signature:\n"
|
2006-03-04 02:44:32 +03:00
|
|
|
" INSTALL(PROGRAMS files... DESTINATION <dir>\n"
|
2006-03-30 22:33:48 +04:00
|
|
|
" [PERMISSIONS permissions...]\n"
|
2006-05-05 22:57:19 +04:00
|
|
|
" [CONFIGURATIONS [Debug|Release|...]]\n"
|
2006-03-30 22:33:48 +04:00
|
|
|
" [COMPONENT <component>]\n"
|
|
|
|
" [RENAME <name>])\n"
|
2006-02-20 02:47:13 +03:00
|
|
|
"The PROGRAMS form is identical to the FILES form except that the "
|
2006-04-18 18:30:56 +04:00
|
|
|
"default permissions for the installed file also include "
|
|
|
|
"OWNER_EXECUTE, GROUP_EXECUTE, and WORLD_EXECUTE. "
|
2006-02-20 02:47:13 +03:00
|
|
|
"This form is intended to install programs that are not targets, "
|
|
|
|
"such as shell scripts. Use the TARGETS form to install targets "
|
|
|
|
"built within the project."
|
|
|
|
"\n"
|
2006-08-22 00:55:03 +04:00
|
|
|
"The DIRECTORY signature:\n"
|
|
|
|
" INSTALL(DIRECTORY dirs... DESTINATION <dir>\n"
|
|
|
|
" [FILE_PERMISSIONS permissions...]\n"
|
|
|
|
" [DIRECTORY_PERMISSIONS permissions...]\n"
|
|
|
|
" [USE_SOURCE_PERMISSIONS]\n"
|
|
|
|
" [CONFIGURATIONS [Debug|Release|...]]\n"
|
|
|
|
" [COMPONENT <component>]\n"
|
|
|
|
" [[PATTERN <pattern> | REGEX <regex>]\n"
|
|
|
|
" [EXCLUDE] [PERMISSIONS permissions...]] [...])\n"
|
|
|
|
"The DIRECTORY form installs contents of one or more directories "
|
|
|
|
"to a given destination. "
|
|
|
|
"The directory structure is copied verbatim to the destination. "
|
|
|
|
"The last component of each directory name is appended to the "
|
|
|
|
"destination directory but a trailing slash may be used to "
|
|
|
|
"avoid this because it leaves the last component empty. "
|
|
|
|
"Directory names given as relative paths are interpreted with "
|
|
|
|
"respect to the current source directory. "
|
2006-08-29 23:08:31 +04:00
|
|
|
"If no input directory names are given the destination directory "
|
|
|
|
"will be created but nothing will be installed into it. "
|
2006-08-22 00:55:03 +04:00
|
|
|
"The FILE_PERMISSIONS and DIRECTORY_PERMISSIONS options specify "
|
|
|
|
"permissions given to files and directories in the destination. "
|
|
|
|
"If USE_SOURCE_PERMISSIONS is specified and FILE_PERMISSIONS is not, "
|
|
|
|
"file permissions will be copied from the source directory structure. "
|
|
|
|
"If no permissions are specified files will be given the default "
|
|
|
|
"permissions specified in the FILES form of the command, and the "
|
|
|
|
"directories will be given the default permissions specified in the "
|
|
|
|
"PROGRAMS form of the command. "
|
|
|
|
"The PATTERN and REGEX options specify a globbing pattern or regular "
|
|
|
|
"expression to match directories or files encountered during traversal "
|
|
|
|
"of an input directory. The full path to an input file or directory "
|
|
|
|
"(with forward slashes) is matched against the expression. "
|
2006-08-22 18:38:10 +04:00
|
|
|
"A PATTERN will match only complete file names: the portion of the "
|
|
|
|
"full path matching the pattern must occur at the end of the file name "
|
|
|
|
"and be preceded by a slash. "
|
2006-08-22 00:55:03 +04:00
|
|
|
"A REGEX will match any portion of the full path but it may use "
|
|
|
|
"'/' and '$' to simulate the PATTERN behavior. "
|
|
|
|
"Options following one of these matching expressions "
|
2006-08-22 18:38:10 +04:00
|
|
|
"are applied only to files or directories matching them. "
|
|
|
|
"The EXCLUDE option will skip the matched file or directory. "
|
|
|
|
"The PERMISSIONS option overrides the permissions setting for the "
|
|
|
|
"matched file or directory. "
|
2006-08-22 00:55:03 +04:00
|
|
|
"For example the code\n"
|
|
|
|
" INSTALL(DIRECTORY icons scripts/ DESTINATION share/myproj\n"
|
|
|
|
" PATTERN \"CVS\" EXCLUDE\n"
|
|
|
|
" PATTERN \"scripts/*\"\n"
|
|
|
|
" PERMISSIONS OWNER_EXECUTE OWNER_WRITE OWNER_READ\n"
|
|
|
|
" GROUP_EXECUTE GROUP_READ)\n"
|
|
|
|
"will install the icons directory to share/myproj/icons and the "
|
|
|
|
"scripts directory to share/myproj. The icons will get default file "
|
|
|
|
"permissions, the scripts will be given specific permissions, and "
|
|
|
|
"any CVS directories will be excluded."
|
|
|
|
"\n"
|
2006-04-13 06:04:50 +04:00
|
|
|
"The SCRIPT and CODE signature:\n"
|
|
|
|
" INSTALL([[SCRIPT <file>] [CODE <code>]] [...])\n"
|
2006-02-19 23:25:27 +03:00
|
|
|
"The SCRIPT form will invoke the given CMake script files during "
|
2006-02-20 02:47:13 +03:00
|
|
|
"installation. If the script file name is a relative path "
|
2006-04-13 06:04:50 +04:00
|
|
|
"it will be interpreted with respect to the current source directory. "
|
|
|
|
"The CODE form will invoke the given CMake code during installation. "
|
2006-05-11 23:50:11 +04:00
|
|
|
"Code is specified as a single argument inside a double-quoted string. "
|
2006-04-13 06:04:50 +04:00
|
|
|
"For example, the code\n"
|
|
|
|
" INSTALL(CODE \"MESSAGE(\\\"Sample install message.\\\")\")\n"
|
|
|
|
"will print a message during installation.\n"
|
2006-02-19 23:25:27 +03:00
|
|
|
"NOTE: This command supercedes the INSTALL_TARGETS command and the "
|
|
|
|
"target properties PRE_INSTALL_SCRIPT and POST_INSTALL_SCRIPT. "
|
2006-02-20 02:47:13 +03:00
|
|
|
"It also replaces the FILES forms of the INSTALL_FILES and "
|
|
|
|
"INSTALL_PROGRAMS commands. "
|
2006-02-19 23:25:27 +03:00
|
|
|
"The processing order of these install rules relative to those "
|
2006-02-10 21:54:36 +03:00
|
|
|
"generated by INSTALL_TARGETS, INSTALL_FILES, and INSTALL_PROGRAMS "
|
2006-02-19 23:25:27 +03:00
|
|
|
"commands is not defined.\n"
|
2006-02-10 21:54:36 +03:00
|
|
|
;
|
|
|
|
}
|
|
|
|
|
|
|
|
cmTypeMacro(cmInstallCommand, cmCommand);
|
2006-02-19 23:25:27 +03:00
|
|
|
|
|
|
|
private:
|
|
|
|
bool HandleScriptMode(std::vector<std::string> const& args);
|
|
|
|
bool HandleTargetsMode(std::vector<std::string> const& args);
|
2006-02-20 02:47:13 +03:00
|
|
|
bool HandleFilesMode(std::vector<std::string> const& args);
|
2006-08-17 22:48:54 +04:00
|
|
|
bool HandleDirectoryMode(std::vector<std::string> const& args);
|
2006-02-19 23:25:27 +03:00
|
|
|
void ComputeDestination(const char* destination, std::string& dest);
|
2006-03-04 02:44:32 +03:00
|
|
|
bool CheckPermissions(std::string const& arg, std::string& permissions);
|
2006-02-10 21:54:36 +03:00
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
#endif
|