view marsyas-link/marsyas/export.h @ 111:fe176cd5280c

Various updates to add Azi metadata + ensure it gets installed
author Chris Cannam
date Fri, 06 Mar 2020 10:47:39 +0000
parents d1501a19818e
children
line wrap: on
line source
#ifndef _marsyas_DLLDEFINES_H
#define _marsyas_DLLDEFINES_H

#define MARSYAS_STATIC 1

#if defined (_WIN32) && !(MARSYAS_STATIC)

#ifdef _MSC_VER
#pragma warning(disable: 4251)
#endif

#if defined (marsyas_EXPORTS)
#define marsyas_EXPORT __declspec(dllexport)
#else
#define marsyas_EXPORT __declspec(dllimport)
#endif

#else

#define marsyas_EXPORT

#endif

#endif