diff options
Diffstat (limited to 'options/export.hpp')
-rw-r--r-- | options/export.hpp | 27 |
1 files changed, 27 insertions, 0 deletions
diff --git a/options/export.hpp b/options/export.hpp new file mode 100644 index 00000000..c430540f --- /dev/null +++ b/options/export.hpp @@ -0,0 +1,27 @@ +#pragma once + +#ifdef BUILD_options +# ifdef _WIN32 +# define OPENTRACK_OPTIONS_LINKAGE __declspec(dllexport) +# else +# define OPENTRACK_OPTIONS_LINKAGE +# endif + +# ifndef _MSC_VER +# define OPENTRACK_OPTIONS_EXPORT __attribute__ ((visibility ("default"))) OPENTRACK_OPTIONS_LINKAGE +# else +# define OPENTRACK_OPTIONS_EXPORT OPENTRACK_OPTIONS_LINKAGE +# endif +#else + #ifdef _WIN32 + # define OPENTRACK_OPTIONS_LINKAGE __declspec(dllimport) + #else + # define OPENTRACK_OPTIONS_LINKAGE + #endif + + #ifndef _MSC_VER + # define OPENTRACK_OPTIONS_EXPORT __attribute__ ((visibility ("default"))) OPENTRACK_OPTIONS_LINKAGE + #else + # define OPENTRACK_OPTIONS_EXPORT OPENTRACK_OPTIONS_LINKAGE + #endif +#endif |