diff options
author | Luca Falavigna <dktrkranz@debian.org> | 2013-03-11 22:33:28 +0100 |
---|---|---|
committer | Luca Falavigna <dktrkranz@debian.org> | 2013-03-11 22:33:28 +0100 |
commit | cb3425abe0bc2d05caf401ca24b82a25a81f009d (patch) | |
tree | c807cf73b89b3ed2a4e9d4afa5d7e8fa4355a6a5 /src/engine/SCons/Tool/install.xml | |
parent | 3d529f4ea2b0de42aa2144dbe904e564b7b0b813 (diff) |
Imported Upstream version 2.3.0upstream/2.3.0
Diffstat (limited to 'src/engine/SCons/Tool/install.xml')
-rw-r--r-- | src/engine/SCons/Tool/install.xml | 15 |
1 files changed, 13 insertions, 2 deletions
diff --git a/src/engine/SCons/Tool/install.xml b/src/engine/SCons/Tool/install.xml index f3a04ba..00924f7 100644 --- a/src/engine/SCons/Tool/install.xml +++ b/src/engine/SCons/Tool/install.xml @@ -1,5 +1,5 @@ <!-- -Copyright (c) 2001, 2002, 2003, 2004, 2005, 2006, 2007, 2008, 2009, 2010, 2011, 2012 The SCons Foundation +Copyright (c) 2001, 2002, 2003, 2004, 2005, 2006, 2007, 2008, 2009, 2010, 2011, 2012, 2013 The SCons Foundation This file is processed by the bin/SConsDoc.py module. See its __doc__ string for a discussion of the format. @@ -22,7 +22,9 @@ Installs one or more source files or directories in the specified target, which must be a directory. The names of the specified source files or directories -remain the same within the destination directory. +remain the same within the destination directory. The +sources may be given as a string or as a node returned by +a builder. <example> env.Install('/usr/local/bin', source = ['foo', 'bar']) @@ -41,6 +43,15 @@ target and source arguments list different numbers of files or directories. +</summary> +</builder> + +<builder name="InstallVersionedLib"> +<summary> +Installs a versioned shared library. The &cv-link-SHLIBVERSION; +construction variable should be defined in the environment +to confirm the version number in the library name. +The symlinks appropriate to the architecture will be generated. <example> env.InstallAs(target = '/usr/local/bin/foo', |