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.
This commit is contained in:
Brad King
2009-04-27 13:20:57 -04:00
parent 0178268901
commit da993b64ce
8 changed files with 13 additions and 52 deletions

View File

@@ -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;