summaryrefslogtreecommitdiffstats
path: root/Tests/CompatibleInterface/main.cpp
diff options
context:
space:
mode:
authorBrad King <brad.king@kitware.com>2014-07-15 15:34:02 (GMT)
committerBrad King <brad.king@kitware.com>2014-07-16 17:28:47 (GMT)
commit6e7e881c57e8ff7295a1007d329708143b54baad (patch)
tree807f56133c933237aba2139682cb9ac925eb1b0a /Tests/CompatibleInterface/main.cpp
parent0400cd5dd1be33ebcc2c2d5dba8233a78b1cee68 (diff)
downloadCMake-6e7e881c57e8ff7295a1007d329708143b54baad.zip
CMake-6e7e881c57e8ff7295a1007d329708143b54baad.tar.gz
CMake-6e7e881c57e8ff7295a1007d329708143b54baad.tar.bz2
Honor $<LINK_ONLY> when checking interface properties
Callers of cmTarget::GetLinkImplementationClosure are interested in the set of targets whose interface properties propagate to the current target. This excludes targets guarded by $<LINK_ONLY>. Teach the CompatibleInterface test to cover suppression of interface compatibility tests with $<LINK_ONLY>. Although this is not recommended in practice, it is a way of covering the above behavior.
Diffstat (limited to 'Tests/CompatibleInterface/main.cpp')
-rw-r--r--Tests/CompatibleInterface/main.cpp8
1 files changed, 7 insertions, 1 deletions
diff --git a/Tests/CompatibleInterface/main.cpp b/Tests/CompatibleInterface/main.cpp
index e23625a..d20b64b 100644
--- a/Tests/CompatibleInterface/main.cpp
+++ b/Tests/CompatibleInterface/main.cpp
@@ -40,8 +40,14 @@ enum {
#include "iface2.h"
+int foo();
+#ifdef _WIN32
+__declspec(dllimport)
+#endif
+int bar();
+
int main(int argc, char **argv)
{
Iface2 if2;
- return if2.foo();
+ return if2.foo() + foo() + bar();
}