mirror of
https://github.com/Kitware/CMake.git
synced 2026-01-01 03:11:08 -06:00
12 lines
213 B
C
12 lines
213 B
C
#if defined(_WIN32)
|
|
# ifdef test2_EXPORTS
|
|
# define TEST2_EXPORT __declspec(dllexport)
|
|
# else
|
|
# define TEST2_EXPORT __declspec(dllimport)
|
|
# endif
|
|
#else
|
|
# define TEST2_EXPORT
|
|
#endif
|
|
|
|
TEST2_EXPORT void relative();
|