Exclude the LINK_LIBRARIES related properties from INTERFACE evaluation.

These interface-related link-libraries properties are used to determine
the value of the other INTERFACE properties, so we were getting infinite
recursion and segfaults otherwise.
This commit is contained in:
Stephen Kelly
2013-01-23 22:17:14 +01:00
committed by Brad King
parent 76ace2b95a
commit 6fbe3ce4ef
5 changed files with 48 additions and 3 deletions

View File

@@ -0,0 +1,7 @@
#include "iface2.h"
int Iface2::foo()
{
return 0;
}