summaryrefslogtreecommitdiffstats
path: root/Tests/Framework/foo.cxx
diff options
context:
space:
mode:
authorBill Hoffman <bill.hoffman@kitware.com>2007-05-08 15:53:39 (GMT)
committerBill Hoffman <bill.hoffman@kitware.com>2007-05-08 15:53:39 (GMT)
commit39ccc4fb11b52a3dbc18d50e19003cd9a708f623 (patch)
treefb24c43b02cc15129c9e33fbf8ed5a8e25bc8e6e /Tests/Framework/foo.cxx
parente6b8aa496a224c92770cb9a7f1cb733f137a611d (diff)
downloadCMake-39ccc4fb11b52a3dbc18d50e19003cd9a708f623.zip
CMake-39ccc4fb11b52a3dbc18d50e19003cd9a708f623.tar.gz
CMake-39ccc4fb11b52a3dbc18d50e19003cd9a708f623.tar.bz2
ENH: fix it so that the FRAMEWORK property does not break the building of normal shared libs on non-mac platforms
Diffstat (limited to 'Tests/Framework/foo.cxx')
-rw-r--r--Tests/Framework/foo.cxx6
1 files changed, 4 insertions, 2 deletions
diff --git a/Tests/Framework/foo.cxx b/Tests/Framework/foo.cxx
index 62acbb7..521f6f2 100644
--- a/Tests/Framework/foo.cxx
+++ b/Tests/Framework/foo.cxx
@@ -1,6 +1,8 @@
#include <stdio.h>
-
-void foo()
+#ifdef _WIN32
+# define CM_TEST_LIB_EXPORT __declspec( dllexport )
+#endif
+CM_TEST_LIB_EXPORT void foo()
{
printf("foo\n");
}