summaryrefslogtreecommitdiffstats
path: root/Source/cmLocalGenerator.cxx
diff options
context:
space:
mode:
authorBrad King <brad.king@kitware.com>2014-03-20 13:22:12 (GMT)
committerCMake Topic Stage <kwrobot@kitware.com>2014-03-20 13:22:12 (GMT)
commit86b003c3c682c3d3ec42d73a183c695f04d0ddb2 (patch)
treee1da4ef14a53702fda7cf61333d89d0d14a0405e /Source/cmLocalGenerator.cxx
parent7bf8a549f9074b06d018419f1660573a412f695e (diff)
parent2600e923a66a86784f756c7d5b9a8b06c5848576 (diff)
downloadCMake-86b003c3c682c3d3ec42d73a183c695f04d0ddb2.zip
CMake-86b003c3c682c3d3ec42d73a183c695f04d0ddb2.tar.gz
CMake-86b003c3c682c3d3ec42d73a183c695f04d0ddb2.tar.bz2
Merge topic 'add_custom_command-no-INTERFACE-lib'
2600e923 Disallow INTERFACE libraries with add_custom_command(TARGET).
Diffstat (limited to 'Source/cmLocalGenerator.cxx')
-rw-r--r--Source/cmLocalGenerator.cxx3
1 files changed, 2 insertions, 1 deletions
diff --git a/Source/cmLocalGenerator.cxx b/Source/cmLocalGenerator.cxx
index c63de79..c47147c 100644
--- a/Source/cmLocalGenerator.cxx
+++ b/Source/cmLocalGenerator.cxx
@@ -264,7 +264,8 @@ void cmLocalGenerator::TraceDependencies()
for(cmGeneratorTargetsType::iterator t = targets.begin();
t != targets.end(); ++t)
{
- if (t->second->Target->IsImported())
+ if (t->second->Target->IsImported()
+ || t->second->Target->GetType() == cmTarget::INTERFACE_LIBRARY)
{
continue;
}