diff options
author | Stephen Kelly <steveire@gmail.com> | 2013-12-30 10:13:04 (GMT) |
---|---|---|
committer | Stephen Kelly <steveire@gmail.com> | 2014-01-04 10:28:58 (GMT) |
commit | c67e1a6aac2439eb24989d02af77c4a6279846a0 (patch) | |
tree | 46e77823e35162cc23883f63319c4fe9d00941de /Source/cmTarget.cxx | |
parent | 07b0f54647b616d72305951774c65766f335ae0d (diff) | |
download | CMake-c67e1a6aac2439eb24989d02af77c4a6279846a0.zip CMake-c67e1a6aac2439eb24989d02af77c4a6279846a0.tar.gz CMake-c67e1a6aac2439eb24989d02af77c4a6279846a0.tar.bz2 |
cmTarget: Fix reporting interface-set properties which are FALSE.
Diffstat (limited to 'Source/cmTarget.cxx')
-rw-r--r-- | Source/cmTarget.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Source/cmTarget.cxx b/Source/cmTarget.cxx index c890605..71e4737 100644 --- a/Source/cmTarget.cxx +++ b/Source/cmTarget.cxx @@ -4508,7 +4508,7 @@ PropertyType checkInterfacePropertyCompatibility(cmTarget const* tgt, ("INTERFACE_" + p).c_str(), 0); std::string reportEntry; - if (ifacePropContent) + if (ifaceIsSet) { reportEntry += " * Target \""; reportEntry += li->Target->GetName(); |