mirror of
https://github.com/Kitware/CMake.git
synced 2025-06-21 04:01:40 +08:00
12 lines
248 B
C
12 lines
248 B
C
#ifdef _WIN32
|
|
# ifdef testlib_EXPORTS
|
|
# define CM_TEST_LIB_EXPORT __declspec( dllexport )
|
|
# else
|
|
# define CM_TEST_LIB_EXPORT __declspec( dllimport )
|
|
# endif
|
|
#else
|
|
# define CM_TEST_LIB_EXPORT
|
|
#endif
|
|
|
|
CM_TEST_LIB_EXPORT float TestLib();
|