summaryrefslogtreecommitdiffstats
path: root/Tests/Jump/Library/jumpShared.cxx
diff options
context:
space:
mode:
authorBrad King <brad.king@kitware.com>2004-01-22 14:56:24 (GMT)
committerBrad King <brad.king@kitware.com>2004-01-22 14:56:24 (GMT)
commit3a33f2c33822a3f266064b2e483ab79b5675bd5c (patch)
tree7f7fde451d33ba1e4e56e532cb55366530ae03b9 /Tests/Jump/Library/jumpShared.cxx
parent8bd124e7d0e655f6195200f83e37dbd0a24624e3 (diff)
downloadCMake-3a33f2c33822a3f266064b2e483ab79b5675bd5c.zip
CMake-3a33f2c33822a3f266064b2e483ab79b5675bd5c.tar.gz
CMake-3a33f2c33822a3f266064b2e483ab79b5675bd5c.tar.bz2
ENH: Adding test for jumping over and building a missing library.
Diffstat (limited to 'Tests/Jump/Library/jumpShared.cxx')
-rw-r--r--Tests/Jump/Library/jumpShared.cxx7
1 files changed, 7 insertions, 0 deletions
diff --git a/Tests/Jump/Library/jumpShared.cxx b/Tests/Jump/Library/jumpShared.cxx
new file mode 100644
index 0000000..f500058
--- /dev/null
+++ b/Tests/Jump/Library/jumpShared.cxx
@@ -0,0 +1,7 @@
+#ifdef _WIN32
+# define JUMP_EXPORT __declspec(dllexport)
+#else
+# define JUMP_EXPORT
+#endif
+
+JUMP_EXPORT int jumpShared() { return 0; }