mirror of
https://github.com/Kitware/CMake.git
synced 2026-04-22 14:23:10 -05:00
10 lines
183 B
C
10 lines
183 B
C
#ifdef _WIN32
|
|
# ifdef bar_EXPORTS
|
|
# define BAR_EXPORT __declspec( dllexport )
|
|
# else
|
|
# define BAR_EXPORT __declspec( dllimport )
|
|
# endif
|
|
#else
|
|
# define BAR_EXPORT
|
|
#endif
|