Skip to content
Snippets Groups Projects
Commit e742c981 authored by Francois Bleibel's avatar Francois Bleibel
Browse files
parents dcf74d48 82dc635a
No related branches found
Tags release-1-1 v1.1
No related merge requests found
......@@ -74,7 +74,7 @@ int main()
#ifndef WIN32
sotPluginKey dlib = dlopen(PLUGIN_LIB_INSTALL_PATH "/feature-visual-point.so", RTLD_NOW);
#else
sotPluginKey dlib = LoadLibrary (PLUGIN_LIB_INSTALL_PATH "/feature-visual-point.lib");
sotPluginKey dlib = LoadLibrary (PLUGIN_LIB_INSTALL_PATH "/feature-visual-point.dll");
#endif
if( NULL==dlib )
{
......@@ -107,7 +107,7 @@ if( NULL==dlib )
#ifndef WIN32
dlib = dlopen(PLUGIN_LIB_INSTALL_PATH "/gain-adaptive.so", RTLD_NOW);
#else
dlib = LoadLibrary (PLUGIN_LIB_INSTALL_PATH "/gain-adaptive.lib");
dlib = LoadLibrary (PLUGIN_LIB_INSTALL_PATH "/gain-adaptive.dll");
#endif
if( NULL==dlib )
{
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment