mirror of
https://github.com/Ryujinx/libsoundio.git
synced 2024-12-22 23:25:34 +00:00
Do not use exports attributes when build libsoundio as a static library
This commit is contained in:
parent
406ffa668c
commit
2e7994b0b3
|
@ -18,14 +18,18 @@
|
|||
#define SOUNDIO_EXTERN_C
|
||||
#endif
|
||||
|
||||
#if defined(_WIN32)
|
||||
#if defined(SOUNDIO_BUILDING_LIBRARY)
|
||||
#define SOUNDIO_EXPORT SOUNDIO_EXTERN_C __declspec(dllexport)
|
||||
#if defined(SOUNDIO_STATIC_LIBRARY)
|
||||
# define SOUNDIO_EXPORT
|
||||
#else
|
||||
#define SOUNDIO_EXPORT SOUNDIO_EXTERN_C __declspec(dllimport)
|
||||
#endif
|
||||
#else
|
||||
#define SOUNDIO_EXPORT SOUNDIO_EXTERN_C __attribute__((visibility ("default")))
|
||||
# if defined(_WIN32)
|
||||
# if defined(SOUNDIO_BUILDING_LIBRARY)
|
||||
# define SOUNDIO_EXPORT SOUNDIO_EXTERN_C __declspec(dllexport)
|
||||
# else
|
||||
# define SOUNDIO_EXPORT SOUNDIO_EXTERN_C __declspec(dllimport)
|
||||
# endif
|
||||
# else
|
||||
# define SOUNDIO_EXPORT SOUNDIO_EXTERN_C __attribute__((visibility ("default")))
|
||||
# endif
|
||||
#endif
|
||||
/// \endcond
|
||||
|
||||
|
|
Loading…
Reference in a new issue