summaryrefslogtreecommitdiff
path: root/Source/cmInstallGenerator.cxx
diff options
context:
space:
mode:
authorBrad King <brad.king@kitware.com>2009-04-27 13:20:57 -0400
committerBrad King <brad.king@kitware.com>2009-04-27 13:20:57 -0400
commitda993b64cebf0eabe296e9846e0a3d70fd786780 (patch)
tree20f42991166d6f1c46d160db1906134632a7e5b1 /Source/cmInstallGenerator.cxx
parent0178268901b59bbec749885adf16d5e16cbf44fc (diff)
downloadcmake-da993b64cebf0eabe296e9846e0a3d70fd786780.tar.gz
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/cmInstallGenerator.cxx')
-rw-r--r--Source/cmInstallGenerator.cxx5
1 files changed, 0 insertions, 5 deletions
diff --git a/Source/cmInstallGenerator.cxx b/Source/cmInstallGenerator.cxx
index 94a70804fd..280c1bc569 100644
--- a/Source/cmInstallGenerator.cxx
+++ b/Source/cmInstallGenerator.cxx
@@ -43,7 +43,6 @@ void cmInstallGenerator
int type,
std::vector<std::string> const& files,
bool optional /* = false */,
- const char* properties /* = 0 */,
const char* permissions_file /* = 0 */,
const char* permissions_dir /* = 0 */,
const char* rename /* = 0 */,
@@ -71,10 +70,6 @@ void cmInstallGenerator
{
os << " OPTIONAL";
}
- if(properties && *properties)
- {
- os << " PROPERTIES" << properties;
- }
if(permissions_file && *permissions_file)
{
os << " PERMISSIONS" << permissions_file;