https://github.com/Kitware/CMake
Raw File
Tip revision: 8883613cc022d0ae2c96d84adf79dd82b74df658 authored by Bill Hoffman on 31 July 2006, 15:00:31 UTC
ENH: move release branch
Tip revision: 8883613
libcxx2.h
#ifdef _WIN32
#  ifdef testcxx2_EXPORTS
#    define CM_TEST_LIB_EXPORT  __declspec( dllexport )
#  else
#    define CM_TEST_LIB_EXPORT  __declspec( dllimport )
#  endif
#else
#  define CM_TEST_LIB_EXPORT
#endif

class CM_TEST_LIB_EXPORT LibCxx2Class
{
public:
  static float Method();
};
back to top