diff options
author | Stanislaw Halik <sthalik@misaki.pl> | 2016-08-17 21:28:45 +0200 |
---|---|---|
committer | Stanislaw Halik <sthalik@misaki.pl> | 2016-08-17 21:34:53 +0200 |
commit | cb33be1c50b68d6022f344ddac923c7aac3a11d5 (patch) | |
tree | 1840e3f9829aa69f10f81804f655e97be3f2eca8 /options/export.hpp | |
parent | 41ba8aa5329c16a797140dc23650ef45f42753a3 (diff) |
move options framework into its own library
- adjust usages
- add support for QList signals and metatype
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 |