From 8e761289a2446367267c6c0d9a26e734f0f78306 Mon Sep 17 00:00:00 2001 From: Karen Arutyunov Date: Wed, 16 Dec 2020 20:29:05 +0300 Subject: Get rid of legacy build systems and rename cutl/ to libcutl/ --- libcutl/export.hxx | 40 ++++++++++++++++++++++++++++++++++++++++ 1 file changed, 40 insertions(+) create mode 100644 libcutl/export.hxx (limited to 'libcutl/export.hxx') diff --git a/libcutl/export.hxx b/libcutl/export.hxx new file mode 100644 index 0000000..ccf1fbe --- /dev/null +++ b/libcutl/export.hxx @@ -0,0 +1,40 @@ +// file : libcutl/export.hxx +// license : MIT; see accompanying LICENSE file + +#ifndef LIBCUTL_EXPORT_HXX +#define LIBCUTL_EXPORT_HXX + +// Normally we don't export class templates (but do complete specializations), +// inline functions, and classes with only inline member functions. Exporting +// classes that inherit from non-exported/imported bases (e.g., std::string) +// will end up badly. The only known workarounds are to not inherit or to not +// export. Also, MinGW GCC doesn't like seeing non-exported function being +// used before their inline definition. The workaround is to reorder code. In +// the end it's all trial and error. + +#if defined(LIBCUTL_STATIC) // Using static. +# define LIBCUTL_EXPORT +#elif defined(LIBCUTL_STATIC_BUILD) // Building static. +# define LIBCUTL_EXPORT +#elif defined(LIBCUTL_SHARED) // Using shared. +# ifdef _WIN32 +# define LIBCUTL_EXPORT __declspec(dllimport) +# else +# define LIBCUTL_EXPORT +# endif +#elif defined(LIBCUTL_SHARED_BUILD) // Building shared. +# ifdef _WIN32 +# define LIBCUTL_EXPORT __declspec(dllexport) +# else +# define LIBCUTL_EXPORT +# endif +#else +// If none of the above macros are defined, then we assume we are being used +// by some third-party build system that cannot/doesn't signal the library +// type. Note that this fallback works for both static and shared but in case +// of shared will be sub-optimal compared to having dllimport. +// +# define LIBCUTL_EXPORT // Using static or shared. +#endif + +#endif // LIBCUTL_EXPORT_HXX -- cgit v1.1