summaryrefslogtreecommitdiffstats
path: root/Tests/InterfaceLibrary/sharedlibtestexe.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'Tests/InterfaceLibrary/sharedlibtestexe.cpp')
-rw-r--r--Tests/InterfaceLibrary/sharedlibtestexe.cpp19
1 files changed, 19 insertions, 0 deletions
diff --git a/Tests/InterfaceLibrary/sharedlibtestexe.cpp b/Tests/InterfaceLibrary/sharedlibtestexe.cpp
new file mode 100644
index 0000000..c677f70
--- /dev/null
+++ b/Tests/InterfaceLibrary/sharedlibtestexe.cpp
@@ -0,0 +1,19 @@
+
+#ifndef SHAREDLIB_DEFINE
+#error Expected SHAREDLIB_DEFINE
+#endif
+
+#ifndef SHAREDDEPENDLIB_DEFINE
+#error Expected SHAREDDEPENDLIB_DEFINE
+#endif
+
+#include "sharedlib.h"
+#include "shareddependlib.h"
+
+int main(int,char**)
+{
+ SharedLibObject sl;
+ SharedDependLibObject sdl = sl.object();
+
+ return sdl.foo() + sl.foo();
+}