summaryrefslogtreecommitdiff
path: root/Tests/ExportImport/Import/A/cmp0022OLD_test.cpp
diff options
context:
space:
mode:
authorStephen Kelly <steveire@gmail.com>2013-06-04 16:47:57 +0200
committerStephen Kelly <steveire@gmail.com>2013-07-08 22:39:57 +0200
commit574fec97fd011ea2899abdd05d97ea66f0faa063 (patch)
tree82de4bacc4771ff4f6ce085cccec04d99b28d35b /Tests/ExportImport/Import/A/cmp0022OLD_test.cpp
parentd0a76ea07cfc2a73900a9539e940e1e60dbba120 (diff)
downloadcmake-574fec97fd011ea2899abdd05d97ea66f0faa063.tar.gz
Export: Generate INTERFACE_LINK_LIBRARIES property on targets.
This property is generated only for targets which have recorded policy CMP0022 as NEW, and a compatibility mode is added to additionally export the old interfaces in that case too. If the old interfaces are not exported, the generated export files require CMake 2.8.12. Because the unit tests use a version which is not yet called 2.8.12, temporarily require a lower version.
Diffstat (limited to 'Tests/ExportImport/Import/A/cmp0022OLD_test.cpp')
-rw-r--r--Tests/ExportImport/Import/A/cmp0022OLD_test.cpp12
1 files changed, 12 insertions, 0 deletions
diff --git a/Tests/ExportImport/Import/A/cmp0022OLD_test.cpp b/Tests/ExportImport/Import/A/cmp0022OLD_test.cpp
new file mode 100644
index 0000000000..e50158b76f
--- /dev/null
+++ b/Tests/ExportImport/Import/A/cmp0022OLD_test.cpp
@@ -0,0 +1,12 @@
+
+#ifdef USING_TESTLIB2
+#error Unexpected USING_TESTLIB2
+#endif
+#ifndef USING_TESTLIB3
+#error Expected USING_TESTLIB3
+#endif
+
+int main(void)
+{
+ return 0;
+}