mirror of
https://github.com/Kitware/CMake.git
synced 2026-01-06 13:51:33 -06:00
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:
@@ -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;
|
||||
|
||||
Reference in New Issue
Block a user