summaryrefslogtreecommitdiff
path: root/Source/cmInstallCommand.cxx
diff options
context:
space:
mode:
authorAvraham Shukron <avraham.shukron@gmail.com>2019-04-06 00:27:04 +0300
committerBrad King <brad.king@kitware.com>2019-04-11 11:09:42 -0400
commita40f9083dd17d1cccf89ccdf290c3f494cab3aac (patch)
tree2170e1aeba12956f710761a7facc5286b7936dc0 /Source/cmInstallCommand.cxx
parent4f07fdde26f1de59e2e8c2a32f0af7a2caff422d (diff)
downloadcmake-a40f9083dd17d1cccf89ccdf290c3f494cab3aac.tar.gz
INTERFACE Target: allow (PUBLIC/PRIVATE)_HEADER properties
Also support installing headers on an INTERFACE library. Signed-off-by: Avraham Shukron <avraham.shukron@gmail.com> Fixes: #15234
Diffstat (limited to 'Source/cmInstallCommand.cxx')
-rw-r--r--Source/cmInstallCommand.cxx3
1 files changed, 1 insertions, 2 deletions
diff --git a/Source/cmInstallCommand.cxx b/Source/cmInstallCommand.cxx
index 20d1a31340..65875dce75 100644
--- a/Source/cmInstallCommand.cxx
+++ b/Source/cmInstallCommand.cxx
@@ -663,8 +663,7 @@ bool cmInstallCommand::HandleTargetsMode(std::vector<std::string> const& args)
// generators for them.
bool createInstallGeneratorsForTargetFileSets = true;
- if (target.IsFrameworkOnApple() ||
- target.GetType() == cmStateEnums::INTERFACE_LIBRARY) {
+ if (target.IsFrameworkOnApple()) {
createInstallGeneratorsForTargetFileSets = false;
}