mirror of
https://port.numenaute.org/aleajactaest/khanat-opennel-code.git
synced 2024-11-10 09:19:01 +00:00
Fixed: #1193 In debug mode ovqt trying to load plugins witj suffix _d.dll instead _r.dll.
This commit is contained in:
parent
fbf81fc0b9
commit
fda7bee758
1 changed files with 10 additions and 5 deletions
|
@ -61,14 +61,19 @@ PluginSpec::PluginSpec()
|
|||
m_plugin(0),
|
||||
m_pluginManager(0)
|
||||
{
|
||||
#ifdef Q_OS_WIN
|
||||
# ifdef DEBUG
|
||||
m_suffix = "_d.dll";
|
||||
// Compilation mode specific suffixes
|
||||
#ifdef NL_OS_WINDOWS
|
||||
# if defined(NL_DEBUG)
|
||||
m_suffix = "_d.dll";
|
||||
# elif defined(NL_RELEASE)
|
||||
m_suffix = "_r.dll";
|
||||
# else
|
||||
m_suffix = "_r.dll";
|
||||
# error "Unknown compilation mode, can't build suffix"
|
||||
# endif
|
||||
#elif defined (NL_OS_UNIX)
|
||||
m_suffix = ".so";
|
||||
#else
|
||||
m_suffix = ".so";
|
||||
# error "You must define the lib suffix for your platform"
|
||||
#endif
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in a new issue