diff options
author | Brad King <brad.king@kitware.com> | 2009-04-27 17:20:57 (GMT) |
---|---|---|
committer | Brad King <brad.king@kitware.com> | 2009-04-27 17:20:57 (GMT) |
commit | da993b64cebf0eabe296e9846e0a3d70fd786780 (patch) | |
tree | 20f42991166d6f1c46d160db1906134632a7e5b1 /Source/cmInstallTargetGenerator.cxx | |
parent | 0178268901b59bbec749885adf16d5e16cbf44fc (diff) | |
download | CMake-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.cxx | 3 |
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); |