summaryrefslogtreecommitdiff
path: root/Source/cmInstallFilesGenerator.cxx
diff options
context:
space:
mode:
authorBrad King <brad.king@kitware.com>2006-03-03 18:44:32 -0500
committerBrad King <brad.king@kitware.com>2006-03-03 18:44:32 -0500
commita2e136fd17b693765a4961220433bdf207930583 (patch)
treeb785101e7a9fe7bed52a05e3d483216b500a4d70 /Source/cmInstallFilesGenerator.cxx
parent5792dc8da8a567ece9fd231e9844a5b1cd30ddc2 (diff)
downloadcmake-a2e136fd17b693765a4961220433bdf207930583.tar.gz
ENH: Added PERMISSIONS and RENAME options to the INSTALL command's FILES and PROGRAMS mode, and corresponding support to FILE(INSTALL). Default permissions for shared libraries on non-Windows/non-OSX platforms no longer has the execute bit set.
Diffstat (limited to 'Source/cmInstallFilesGenerator.cxx')
-rw-r--r--Source/cmInstallFilesGenerator.cxx12
1 files changed, 9 insertions, 3 deletions
diff --git a/Source/cmInstallFilesGenerator.cxx b/Source/cmInstallFilesGenerator.cxx
index 7a73327cef..ff32fe2bde 100644
--- a/Source/cmInstallFilesGenerator.cxx
+++ b/Source/cmInstallFilesGenerator.cxx
@@ -21,8 +21,10 @@
//----------------------------------------------------------------------------
cmInstallFilesGenerator
::cmInstallFilesGenerator(std::vector<std::string> const& files,
- const char* dest, bool programs):
- Files(files), Destination(dest), Programs(programs)
+ const char* dest, bool programs,
+ const char* permissions, const char* rename):
+ Files(files), Destination(dest), Programs(programs),
+ Permissions(permissions), Rename(rename)
{
}
@@ -39,9 +41,13 @@ void cmInstallFilesGenerator::GenerateScript(std::ostream& os)
for(std::vector<std::string>::const_iterator fi = this->Files.begin();
fi != this->Files.end(); ++fi)
{
+ bool not_optional = false;
+ const char* no_properties = 0;
this->AddInstallRule(os, this->Destination.c_str(),
(this->Programs
? cmTarget::INSTALL_PROGRAMS
- : cmTarget::INSTALL_FILES), fi->c_str());
+ : cmTarget::INSTALL_FILES), fi->c_str(),
+ not_optional, no_properties,
+ this->Permissions.c_str(), this->Rename.c_str());
}
}