cmake/Tests/CxxOnly/libcxx2.h

16 lines
282 B
C
Raw Normal View History

#ifdef _WIN32
2018-08-09 18:06:22 +02:00
# ifdef testcxx2_EXPORTS
# define CM_TEST_LIB_EXPORT __declspec(dllexport)
# else
# define CM_TEST_LIB_EXPORT __declspec(dllimport)
# endif
#else
2018-08-09 18:06:22 +02:00
# define CM_TEST_LIB_EXPORT
#endif
class CM_TEST_LIB_EXPORT LibCxx2Class
{
public:
static float Method();
};