mirror of
https://port.numenaute.org/aleajactaest/khanat-code-old.git
synced 2024-11-12 02:09:46 +00:00
Fixed: #1193 Clean up code.
This commit is contained in:
parent
589f66a735
commit
f7525c521b
1 changed files with 3 additions and 3 deletions
|
@ -64,14 +64,14 @@ PluginSpec::PluginSpec()
|
||||||
// Compilation mode specific suffixes
|
// Compilation mode specific suffixes
|
||||||
#ifdef NL_OS_WINDOWS
|
#ifdef NL_OS_WINDOWS
|
||||||
# if defined(NL_DEBUG)
|
# if defined(NL_DEBUG)
|
||||||
m_suffix = "_d.dll";
|
m_suffix = "_d.dll";
|
||||||
# elif defined(NL_RELEASE)
|
# elif defined(NL_RELEASE)
|
||||||
m_suffix = "_r.dll";
|
m_suffix = "_r.dll";
|
||||||
# else
|
# else
|
||||||
# error "Unknown compilation mode, can't build suffix"
|
# error "Unknown compilation mode, can't build suffix"
|
||||||
# endif
|
# endif
|
||||||
#elif defined (NL_OS_UNIX)
|
#elif defined (NL_OS_UNIX)
|
||||||
m_suffix = ".so";
|
m_suffix = ".so";
|
||||||
#else
|
#else
|
||||||
# error "You must define the lib suffix for your platform"
|
# error "You must define the lib suffix for your platform"
|
||||||
#endif
|
#endif
|
||||||
|
|
Loading…
Reference in a new issue