summaryrefslogtreecommitdiff
path: root/Tests/OutOfSource/OutOfSourceSubdir/testlib.h
blob: 3e012d252ca80b17ce3ff7f454828f2ed59b6f70 (plain)
1
2
3
4
5
6
7
8
9
10
11
#ifdef _WIN32
#  ifdef testlib_EXPORTS
#    define CM_TEST_LIB_EXPORT __declspec(dllexport)
#  else
#    define CM_TEST_LIB_EXPORT __declspec(dllimport)
#  endif
#else
#  define CM_TEST_LIB_EXPORT
#endif

CM_TEST_LIB_EXPORT float TestLib();