summaryrefslogtreecommitdiffstats
path: root/Source/cmInstallCommand.cxx
diff options
context:
space:
mode:
Diffstat (limited to 'Source/cmInstallCommand.cxx')
-rw-r--r--Source/cmInstallCommand.cxx6
1 files changed, 2 insertions, 4 deletions
diff --git a/Source/cmInstallCommand.cxx b/Source/cmInstallCommand.cxx
index 6c742b9..863f138 100644
--- a/Source/cmInstallCommand.cxx
+++ b/Source/cmInstallCommand.cxx
@@ -376,7 +376,7 @@ bool cmInstallCommand::HandleTargetsMode(std::vector<std::string> const& args)
// This is a non-DLL platform.
// If it is marked with FRAMEWORK property use the FRAMEWORK set of
// INSTALL properties. Otherwise, use the LIBRARY properties.
- if(target.GetPropertyAsBool("FRAMEWORK"))
+ if(target.IsFrameworkOnApple())
{
// Use the FRAMEWORK properties.
if (!frameworkArgs.GetDestination().empty())
@@ -512,9 +512,7 @@ bool cmInstallCommand::HandleTargetsMode(std::vector<std::string> const& args)
//
bool createInstallGeneratorsForTargetFileSets = true;
- if(cmTarget::SHARED_LIBRARY == target.GetType() &&
- target.GetPropertyAsBool("FRAMEWORK") &&
- this->Makefile->IsOn("APPLE"))
+ if(target.IsFrameworkOnApple())
{
createInstallGeneratorsForTargetFileSets = false;
}