diff options
author | Brad King <brad.king@kitware.com> | 2004-01-22 15:51:34 (GMT) |
---|---|---|
committer | Brad King <brad.king@kitware.com> | 2004-01-22 15:51:34 (GMT) |
commit | a4aab3b677b01a8049cdd41bc168deed69f437fa (patch) | |
tree | c9d50384a9aff7c97957e01978a87a42efd05d68 /Tests/Jump/Library/Shared/jumpShared.cxx | |
parent | 778af637eab4716e3635a09988dd3c2fb582497f (diff) | |
download | CMake-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.cxx | 7 |
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; } |