Fixed: #1193 Clean up code.
This commit is contained in:
parent
38997d34f2
commit
dab8c80928
1 changed files with 3 additions and 3 deletions
|
@ -64,14 +64,14 @@ PluginSpec::PluginSpec()
|
|||
// Compilation mode specific suffixes
|
||||
#ifdef NL_OS_WINDOWS
|
||||
# if defined(NL_DEBUG)
|
||||
m_suffix = "_d.dll";
|
||||
m_suffix = "_d.dll";
|
||||
# elif defined(NL_RELEASE)
|
||||
m_suffix = "_r.dll";
|
||||
m_suffix = "_r.dll";
|
||||
# else
|
||||
# error "Unknown compilation mode, can't build suffix"
|
||||
# endif
|
||||
#elif defined (NL_OS_UNIX)
|
||||
m_suffix = ".so";
|
||||
m_suffix = ".so";
|
||||
#else
|
||||
# error "You must define the lib suffix for your platform"
|
||||
#endif
|
||||
|
|
Loading…
Reference in a new issue