Ensure maf symbols are exported on unix;

This commit is contained in:
bjorn 2019-05-12 14:39:18 -07:00
parent db3c3dbb1e
commit 9a1579a773
1 changed files with 1 additions and 1 deletions

View File

@ -5,7 +5,7 @@
#ifdef _WIN32
#define MAF_EXPORT __declspec(dllexport)
#else
#define MAF_EXPORT
#define MAF_EXPORT __attribute__((visibility("default")))
#endif
typedef float* vec3;