|
From: Lasse Kärkkäi. <tr...@us...> - 2009-11-30 20:45:44
|
Module: performous Branch: master Commit: 2ab964f0f9d8c0c8629dafb2b184d47c06dbf2b4 Author: Lasse Karkkainen <tro...@tr...> Date: Mon Nov 30 22:44:59 2009 +0200 Hack for Windows build --- libs/plugin++/include/plugin++/dllhelper.hpp | 4 ++++ 1 files changed, 4 insertions(+), 0 deletions(-) diff --git a/libs/plugin++/include/plugin++/dllhelper.hpp b/libs/plugin++/include/plugin++/dllhelper.hpp index bcb5593..612ab08 100644 --- a/libs/plugin++/include/plugin++/dllhelper.hpp +++ b/libs/plugin++/include/plugin++/dllhelper.hpp @@ -2,11 +2,15 @@ #if defined _WIN32 || defined __CYGWIN__ +// A hack to allow static library build (for now) -Tronic +#define DLL_PUBLIC +#if 0 #ifdef BUILDING_DLL #define DLL_PUBLIC __declspec(dllexport) #else #define DLL_PUBLIC __declspec(dllimport) #endif +#endif #else |