merge default into gsoc2011-translationovqt

This commit is contained in:
sfb 2011-10-22 17:00:09 -05:00
commit bd089d779b

View file

@ -61,14 +61,19 @@ PluginSpec::PluginSpec()
m_plugin(0),
m_pluginManager(0)
{
#ifdef Q_OS_WIN
# ifdef DEBUG
// Compilation mode specific suffixes
#ifdef NL_OS_WINDOWS
# if defined(NL_DEBUG)
m_suffix = "_d.dll";
# else
# elif defined(NL_RELEASE)
m_suffix = "_r.dll";
# else
# error "Unknown compilation mode, can't build suffix"
# endif
#else
#elif defined (NL_OS_UNIX)
m_suffix = ".so";
#else
# error "You must define the lib suffix for your platform"
#endif
}