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/cmInstallGenerator.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/cmInstallGenerator.cxx')
-rw-r--r-- | Source/cmInstallGenerator.cxx | 5 |
1 files changed, 0 insertions, 5 deletions
diff --git a/Source/cmInstallGenerator.cxx b/Source/cmInstallGenerator.cxx index 94a7080..280c1bc 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; |