diff options
author | Brad King <brad.king@kitware.com> | 2013-01-24 13:26:01 (GMT) |
---|---|---|
committer | CMake Topic Stage <kwrobot@kitware.com> | 2013-01-24 13:26:01 (GMT) |
commit | 21fc6c46df7f2271d7baace04f239f031785b917 (patch) | |
tree | d0d65b9da62ee894b2b14afc435280d4fe569061 /Tests/CompatibleInterface/main.cpp | |
parent | 907f1e22271079eb2531c3e0b76b9c742c698197 (diff) | |
parent | 6fbe3ce4ef1178cc4f2f14f281cd48ef82a11e03 (diff) | |
download | CMake-21fc6c46df7f2271d7baace04f239f031785b917.zip CMake-21fc6c46df7f2271d7baace04f239f031785b917.tar.gz CMake-21fc6c46df7f2271d7baace04f239f031785b917.tar.bz2 |
Merge topic 'fix-COMPATIBLE_INTERFACE-link-libraries'
6fbe3ce Exclude the LINK_LIBRARIES related properties from INTERFACE evaluation.
Diffstat (limited to 'Tests/CompatibleInterface/main.cpp')
-rw-r--r-- | Tests/CompatibleInterface/main.cpp | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/Tests/CompatibleInterface/main.cpp b/Tests/CompatibleInterface/main.cpp index b7c6638..ae0e985 100644 --- a/Tests/CompatibleInterface/main.cpp +++ b/Tests/CompatibleInterface/main.cpp @@ -11,7 +11,10 @@ #error Expected BOOL_PROP3 #endif +#include "iface2.h" + int main(int argc, char **argv) { - return 0; + Iface2 if2; + return if2.foo(); } |