mirror of
https://github.com/xiaoyifang/goldendict-ng.git
synced 2024-11-24 08:34:08 +00:00
b855be1fbe
* cmake: fix build on Windows Debug * cmake: fix build on Windows Debug * cmake: fix build on Windows Debug * cmake: fix build on Windows Debug
19 lines
495 B
C
19 lines
495 B
C
#ifndef HUNSPELL_VISIBILITY_H_
|
|
#define HUNSPELL_VISIBILITY_H_
|
|
|
|
#if defined(HUNSPELL_STATIC)
|
|
# define LIBHUNSPELL_DLL_EXPORTED
|
|
#elif defined(_WIN32)
|
|
# if defined(BUILDING_LIBHUNSPELL)
|
|
# define LIBHUNSPELL_DLL_EXPORTED __declspec(dllexport)
|
|
# else
|
|
# define LIBHUNSPELL_DLL_EXPORTED __declspec(dllimport)
|
|
# endif
|
|
#elif defined(BUILDING_LIBHUNSPELL) && 0
|
|
# define LIBHUNSPELL_DLL_EXPORTED __attribute__((__visibility__("default")))
|
|
#else
|
|
# define LIBHUNSPELL_DLL_EXPORTED
|
|
#endif
|
|
|
|
#endif
|