summaryrefslogtreecommitdiffstats
path: root/Tests/Jump/Library/Shared/jumpShared.cxx
diff options
context:
space:
mode:
authorBrad King <brad.king@kitware.com>2004-01-22 15:51:34 (GMT)
committerBrad King <brad.king@kitware.com>2004-01-22 15:51:34 (GMT)
commita4aab3b677b01a8049cdd41bc168deed69f437fa (patch)
treec9d50384a9aff7c97957e01978a87a42efd05d68 /Tests/Jump/Library/Shared/jumpShared.cxx
parent778af637eab4716e3635a09988dd3c2fb582497f (diff)
downloadCMake-a4aab3b677b01a8049cdd41bc168deed69f437fa.zip
CMake-a4aab3b677b01a8049cdd41bc168deed69f437fa.tar.gz
CMake-a4aab3b677b01a8049cdd41bc168deed69f437fa.tar.bz2
ENH: Improved test to have a different relative path name for libraries between the Executable and Library directories.
Diffstat (limited to 'Tests/Jump/Library/Shared/jumpShared.cxx')
-rw-r--r--Tests/Jump/Library/Shared/jumpShared.cxx7
1 files changed, 7 insertions, 0 deletions
diff --git a/Tests/Jump/Library/Shared/jumpShared.cxx b/Tests/Jump/Library/Shared/jumpShared.cxx
new file mode 100644
index 0000000..f500058
--- /dev/null
+++ b/Tests/Jump/Library/Shared/jumpShared.cxx
@@ -0,0 +1,7 @@
+#ifdef _WIN32
+# define JUMP_EXPORT __declspec(dllexport)
+#else
+# define JUMP_EXPORT
+#endif
+
+JUMP_EXPORT int jumpShared() { return 0; }