summaryrefslogtreecommitdiffstats
path: root/Source/cmInstallTargetGenerator.cxx
diff options
context:
space:
mode:
authorBrad King <brad.king@kitware.com>2009-04-27 17:20:57 (GMT)
committerBrad King <brad.king@kitware.com>2009-04-27 17:20:57 (GMT)
commitda993b64cebf0eabe296e9846e0a3d70fd786780 (patch)
tree20f42991166d6f1c46d160db1906134632a7e5b1 /Source/cmInstallTargetGenerator.cxx
parent0178268901b59bbec749885adf16d5e16cbf44fc (diff)
downloadCMake-da993b64cebf0eabe296e9846e0a3d70fd786780.zip
CMake-da993b64cebf0eabe296e9846e0a3d70fd786780.tar.gz
CMake-da993b64cebf0eabe296e9846e0a3d70fd786780.tar.bz2
ENH: Remove unused PROPERTIES from file(INSTALL)
The undocumented file(INSTALL) command used to support a PROPERTIES option, but no install code still uses it. This removes the option.
Diffstat (limited to 'Source/cmInstallTargetGenerator.cxx')
-rw-r--r--Source/cmInstallTargetGenerator.cxx3
1 files changed, 1 insertions, 2 deletions
diff --git a/Source/cmInstallTargetGenerator.cxx b/Source/cmInstallTargetGenerator.cxx
index b8df71e..c4a9103 100644
--- a/Source/cmInstallTargetGenerator.cxx
+++ b/Source/cmInstallTargetGenerator.cxx
@@ -311,10 +311,9 @@ void cmInstallTargetGenerator::GenerateScriptForConfig(std::ostream& os,
// Write code to install the target file.
const char* no_dir_permissions = 0;
const char* no_rename = 0;
- const char* no_properties = 0;
bool optional = this->Optional || this->ImportLibrary;
this->AddInstallRule(os, type, files,
- optional, no_properties,
+ optional,
this->FilePermissions.c_str(), no_dir_permissions,
no_rename, literal_args.c_str(),
indent);