https://github.com/Kitware/CMake
Raw File
Tip revision: 0846bdba097621b8982b73923c18e1b2fb6370eb authored by Bill Hoffman on 16 July 2007, 14:59:29 UTC
ENH: final 2.4.7 commit
Tip revision: 0846bdb
bar.h
#ifdef _WIN32
#  ifdef bar_EXPORTS
#    define BAR_EXPORT  __declspec( dllexport )
#  else
#    define BAR_EXPORT  __declspec( dllimport )
#  endif
#else
#  define BAR_EXPORT 
#endif
back to top